在尝试构建自定义版本的 jQuery 而不安装全局依赖项时,我遇到了以下问题:

$ node --version
v0.10.4
$ npm --version
1.2.18

$ git clone git://github.com/jquery/jquery.git
$ cd jquery
$ git checkout `git describe --abbrev=0 --tags` # latest tag
$ npm install
$ npm install grunt-cli

# variant A
$ npm run-script grunt custom:-ajax # does nothing

# variant B
$ node_modules/.bin/grunt custom:-ajax
Running "custom:-ajax" (custom) task
Creating custom build...
Warning: Error: not found: grunt Use --force to continue.
Aborted due to warnings.

我以前很少使用 Grunt 或 Node,那么我在这里错过了什么?

最佳答案

这是因为 jQuery 自定义任务产生 grunt 的方式。我刚刚发送了一个拉取请求来解决这个问题:https://github.com/jquery/jquery/pull/1255

关于npm - 在非全局安装中使用 Grunt,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16131084/

10-16 17:31