在Windows上运行grunt.cmd有多个问题

我不得不修改grunt.cmd,因为我的系统路径非常错误:

本来:

%~dp0Application Datanpmnode_modulesgrunt

哪个会打印:

dacwnasProfiles<user>Application DatanpmApplication Datanpmnode_modulesgrunt

运行grunt.cmd会抛出找不到模块错误。 将其更改为%~dp0node_modulesgrunt"将删除该错误。

但是,在Windows中运行grunt.cmd --version不会输出任何内容。 它暂停一会儿并返回到一个空白的命令行。

我正在运行Windows 7 64位,并且命令行以管理员身份运行


首先,你应该在全局安装grunt-cli软件包:

npm install -g grunt-cli

接下来,确保你的项目文件夹中安装了grunt

你可以这样做:

  • 确保gruntpackage.json一部分,然后运行: npm install
  • 去你的项目文件夹,只是npm install grunt
  • 之后,你不应该有任何麻烦运行Grunt。


    你安装了grunt-cli吗?

    我的grunt.cmd内容如下所示:

    :: Created by npm, please don't edit manually.
    @IF EXIST "%~dp0node.exe" (
      "%~dp0node.exe"  "%~dp0node_modulesgrunt-clibingrunt" %*
    ) ELSE (
       node  "%~dp0node_modulesgrunt-clibingrunt" %*
    )
    
    链接地址: http://www.djcxy.com/p/11283.html

    上一篇: Multiple issues running grunt.cmd on windows

    下一篇: Best way to implement a tabpanel in ember?