1. ホーム
  2. node.js

[解決済み] "致命的なエラーです。grunt "コマンドを実行すると、"Unable to find local grunt. "と表示されます。

2022-02-05 14:40:53

質問内容

以下のコマンドでgruntをアンインストールしました。

npm uninstall -g grunt

そして、再び以下のコマンドでgruntをインストールしました。

npm install -g grunt-cli

以下のリンクにアクセスしてください。 https://npmjs.org/package/grunt-html

上記のgruntプラグインを使いたいのですが

しかし、gruntコマンドを実行すると、以下のエラーが発生します。

D:\nodeJS\node_modules\grunt-html>grunt
grunt-cli: The grunt command line interface. (v0.1.6)

Fatal error: Unable to find local grunt.

If you're seeing this message, either a Gruntfile wasn't found or grunt
hasn't been installed locally to your project. For more information about
installing and configuring grunt, please see the Getting Started guide:
http://gruntjs.com/getting-started

解決方法は?

全ては gruntjs.com .

<ブロッククオート

grunt-cliをインストールしても、gruntタスクランナーはインストールされないことに注意してください! grunt CLI の仕事はシンプルです。 の隣にインストールされます。これにより、複数のバージョンの gruntは、同じマシンに同時にインストールすることができます。

そこで、プロジェクトフォルダ内に、(できれば gruntの最新バージョン :

npm install grunt --save-dev

オプション --save-dev を追加します。 grunt として dev-dependency をあなたの パッケージ.json . これにより、依存関係を簡単に再インストールすることができます。