在我的package.json文件中,我具有以下“脚本”配置。
package.json
... "scripts": { "start": "watchify -o lib/index.js -v -d .", "build": "browserify . | uglifyjs -cm > lib/index.js", "test": "jest" } ...
这让我跑npm start,npm build并npm test通过命令行。
npm start
npm build
npm test
这很棒!但理想情况下,由于界面的便捷性,我希望能够使用运行配置从WebStorm中运行这些任务。我一直无法弄清楚该怎么做。
有没有办法创建我自己的自定义运行配置或自动从中生成它们package.json?
您可以为此使用Node.js运行配置。例如,对于'npm start':
'npm start'
Working dir: /path/to/your/package.json JavaScript file: /path/to/global/node_modules/npm/bin/npm-cli.js Application parameters: run start
要从命令行找到全局的node_modules路径,请使用“ npm root -g”。
无法从文件自动创建运行配置。创建自己的运行配置的唯一方法是开发插件- 请参见http://confluence.jetbrains.com/display/IDEADEV/Run+Configurations
更新 :自2016.x,WebStorm提供了一个特殊的运行配置- 故宫 -运行/调试NPM脚本。可以通过“ 编辑配置…” 对话框手动创建,也可以通过在NPM工具窗口中选择脚本来自动添加(可以从package.json右键菜单中打开)。
参见https://www.jetbrains.com/help/webstorm/2017.3/running-npm- scripts.html