Compare commits

..

2 commits

Author SHA1 Message Date
be73348c78 0.2.8 2023-05-16 19:30:45 -03:00
558a42b7c2 compile ts 2023-05-16 19:30:17 -03:00
2 changed files with 8 additions and 5 deletions

View file

@ -1,10 +1,12 @@
{ {
"name": "@nulo/isogit-lfs", "name": "@nulo/isogit-lfs",
"version": "0.2.7", "version": "0.2.8",
"description": "LFS helpers for Isomorphic Git", "description": "LFS helpers for Isomorphic Git",
"main": "src/index.ts", "main": "dist/index.js",
"repository": "git@github.com:riboseinc/isogit-lfs.git", "repository": "git@github.com:riboseinc/isogit-lfs.git",
"scripts": {}, "scripts": {
"prepublish": "tsc"
},
"author": { "author": {
"name": "Ribose Inc.", "name": "Ribose Inc.",
"email": "open.source@ribose.com" "email": "open.source@ribose.com"

View file

@ -5,7 +5,6 @@
"moduleResolution": "node", "moduleResolution": "node",
"strict": true, "strict": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noImplicitReturns": true, "noImplicitReturns": true,
@ -17,6 +16,8 @@
"newLine": "lf", "newLine": "lf",
"declaration": true "declaration": true,
"outDir": "dist/"
} }
} }