如何为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
?
答案 0 :(得分:1)
我想你忘了使用run
。
尝试npm run firstBuild
。