3

グローバルな依存関係をインストールせずに 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 をあまり使用したことがないので、何が足りないのでしょうか?

4

1 に答える 1

3

これは、jQuery カスタム タスクがうなり声を生成する方法によるものです。この問題を修正するプル リクエストを送信しました: https://github.com/jquery/jquery/pull/1255

于 2013-04-24T19:11:12.547 に答える