我在Windows 7上使用Webstorm (PHPStorm)。在实际项目中,我们使用 grunt 连接 javascript 和 css 以及其他几个构建过程。
我试图将 grunt 命令设置为 Webstorm 中的外部运行命令。我为此尝试的设置是:
Name: grunt
Parameters: none
WorkingDirectory: $ProjectFileDir$
所以现在当我试图在 Webstorm 中启动我的外部运行命令时,我总是得到错误
> grunt
Cannot run program "grunt" (in directory "C:\Users\jawidmer\workspaces\projectname"): CreateProcess error=2, The system cannot find the file specified
当我打开命令行工具并导航到项目文件夹时,我可以毫无问题地启动 grunt。
我已经在谷歌搜索并尝试了各种不同的设置组合,但没有一个有效..
你有什么想法,我必须改变什么才能从 Webstorm 中的外部运行命令开始 grunt?
谢谢简