Merge pull request #4113 from rgbkrk/npm-scripts

Run builds, tests, etc. without global jake
This commit is contained in:
Mohamed Hegazy 2015-07-31 16:54:48 -07:00
commit adfac9247e

View File

@ -37,6 +37,11 @@
"tslint": "latest"
},
"scripts": {
"test": "jake runtests"
"pretest": "jake tests",
"test": "jake runtests",
"build": "npm run build:compiler && npm run build:tests",
"build:compiler": "jake local",
"build:tests": "jake tests",
"clean": "jake clean"
}
}