Gruntのインストール

更新日:2019.04.27 作成日:2014.02.24

Grunt Install

npm install -g grunt-cli
npm install grunt --save-dev

早速、gruntって叩くと、怒られた。

$ grunt
>> Local Npm module "grunt-contrib-clean" not found. Is it installed?
>> Local Npm module "grunt-contrib-jshint" not found. Is it installed?
>> Local Npm module "grunt-contrib-uglify" not found. Is it installed?
>> Local Npm module "grunt-contrib-watch" not found. Is it installed?
>> Local Npm module "grunt-recess" not found. Is it installed?
>> Local Npm module "grunt-contrib-imagemin" not found. Is it installed?
>> Local Npm module "grunt-svgmin" not found. Is it installed?
Warning: Task "clean" not found. Use --force to continue.

Aborted due to warnings.

それぞれインストールしていく。

npm install grunt-contrib-clean --save-dev
npm install grunt-contrib-jshint --save-dev
npm install grunt-contrib-uglify --save-dev
npm install grunt-contrib-watch --save-dev
npm install grunt-recess --save-dev
npm install grunt-contrib-imagemin --save-dev
npm install grunt-svgmin --save-dev

これでやっと gruntを実行できた。

メモ

  • --save-devをつけると、package.jsonにインストールした情報が記述される
  • package.jsonにインストールしたいプラグインを書くことでnpm installでインストール出来る。

参考