1

ビルドツールとしてgrunt.jsを使用しています。

私たちの開発マシンの1つ(MacOS Mountain Lion)で、gruntは実行されていますが、ファイルとディレクトリを作成していないようです。

その特定のマシンで異なっていたもう1つの点は、NPMを使用してgrunt用のプラグインをインストールするときに、使用する必要があったことsudo npmです。そうしないと、アクセス許可エラーが発生しました。

親ディレクトリのアクセス許可を確認し、さまざまなことを試しましたが、何も機能していないようです。NodeJsはまだファイルやディレクトリを作成しません。

何か案は?

アップデート:

どうやらhtml-compressorgruntプラグインは依存関係としてgrunt1.4を必要とします。

4

1 に答える 1

1

Sounds a lot like a permission problem. Navigate to your directory in question and then try ls -l in your terminal. Should look something like this:

permissions example

If your directory does not have similar permissions, change them to, for example, chmod 775 mydir. Use sudo if needed.

于 2012-12-03T12:18:55.637 に答える