Skip to content

Commit

Permalink
Remove explicit paths
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelw85 committed Jul 16, 2019
1 parent dbca960 commit 4d1be52
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
},
"scripts": {
"build": "npm run build:ts && npm run build:dts && npm run build:copy-files",
"build:ts": "./node_modules/.bin/tsc",
"build:ts": "tsc",
"build:ts:watch": "npm run build:ts -- --watch",
"build:dts": "./node_modules/.bin/tsc -d --emitDeclarationOnly --allowJs false",
"build:copy-files": "./node_modules/.bin/copyfiles -e ./skeleton/**/*.{js,ts} -e ./lib/**/*.{js,ts} ./lib/**/* ./skeleton/**/* ./dist",
"build:dts": "tsc -d --emitDeclarationOnly --allowJs false",
"build:copy-files": "copyfiles -e ./skeleton/**/*.{js,ts} -e ./lib/**/*.{js,ts} ./lib/**/* ./skeleton/**/* ./dist",
"lint": "gulp lint",
"pretest": "npm run lint",
"test": "./node_modules/.bin/jasmine-ts",
"coverage": "nyc ./node_modules/.bin/jasmine-ts",
"test": "jasmine-ts",
"coverage": "nyc jasmine-ts",
"test:watch": "nodemon -x 'npm test'"
},
"license": "MIT",
Expand Down

0 comments on commit 4d1be52

Please sign in to comment.