Skip to content

Commit

Permalink
Simplify scripts in package.json
Browse files Browse the repository at this point in the history
npm already puts the directory in question in PATH
  • Loading branch information
denis-sokolov committed Nov 25, 2015
1 parent b2d17b5 commit 4b6d9d6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
"node": ">= 0.12.0"
},
"scripts": {
"test": "./node_modules/.bin/dt --changes",
"changes": "./node_modules/.bin/dt --changes",
"lint": "./node_modules/.bin/dt --lint",
"tscparams": "./node_modules/.bin/dt --tscparams --no-tests --no-headers",
"all": "./node_modules/.bin/dt",
"dry": "./node_modules/.bin/dt --dry --changes",
"list": "./node_modules/.bin/dt --dry --print-files --print-refmap",
"last": "./node_modules/.bin/dt --dry --print-files --print-refmap --changes",
"files": "./node_modules/.bin/dt --dry --print-files",
"refmap": "./node_modules/.bin/dt --dry --print-refmap",
"help": "./node_modules/.bin/dt -h"
"test": "dt --changes",
"changes": "dt --changes",
"lint": "dt --lint",
"tscparams": "dt --tscparams --no-tests --no-headers",
"all": "dt",
"dry": "dt --dry --changes",
"list": "dt --dry --print-files --print-refmap",
"last": "dt --dry --print-files --print-refmap --changes",
"files": "dt --dry --print-files",
"refmap": "dt --dry --print-refmap",
"help": "dt -h"
},
"dependencies": {
},
Expand Down

0 comments on commit 4b6d9d6

Please sign in to comment.