【发布时间】:2016-08-24 18:42:00
【问题描述】:
实际执行的是什么命令?
就像使用 npm start 并在 package.json 中包含以下内容
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
}
npm start 在幕后运行node index.js,
同样,grunt 运行什么(在幕后)?
【问题讨论】: