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
でインストール出来る。