标签: node.js npm gulp bower
我在packages.json中使用以下内容进行postinstall。
"scripts": { "start": "node server.js", "postinstall": "bower install --config.interactive=false && gulp build" },
但是,某些环境不支持&&。如何将等效命令放在postinstall.js脚本中,以便我可以执行这两个命令?
&&
postinstall.js