Angular 2项目初始构建的脚本?

时间:2017-01-20 17:06:09

标签: node.js npm

如何为npm编写脚本,在一个angular 2项目中安装node_modules并编译ts文件。这不起作用:

"scripts": {
"firstBuild": "npm install && tsc", 
....

我收到错误:

> npm firstBuild

Usage: npm <command>

where <command> is one of:

PS:

我可以像"start" : "tsc && concurrently \"tsc -w\" \"lite-server\"一样运行npm start,为什么我不能npm firstBuild

1 个答案:

答案 0 :(得分:1)

我想你忘了使用run

尝试npm run firstBuild