Run builds, tests, etc. without global jake

This commit is contained in:
Kyle Kelley 2015-07-31 18:40:01 -05:00
parent 33ae0d639a
commit 068889f7b3

View file

@ -37,6 +37,11 @@
"tslint": "latest" "tslint": "latest"
}, },
"scripts": { "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"
} }
} }