Remove typings install from build commands

This commit is contained in:
Will Abson
2016-07-29 18:15:36 +01:00
parent 4c997685ab
commit 34506770eb
2 changed files with 4 additions and 4 deletions

View File

@@ -7,8 +7,8 @@
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings",
"typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task",
"build": "npm run tslint && rimraf dist && tsc && npm run copytemplates && license-check",
"build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts",