前回のエントリー(Gruntとgulp、それぞれのライブリロード環境の作り方 - なにか作る)に続いて Bower を使うための環境も Grunt と gulp それぞれで構築してみた。 前提条件 以下のソフトウェアがインストールされていること。 Node.js および npm Grunt gulp Bower ディレクトリ構造 webapp ├─app │ └─lib ├─bower.json └─package.json webappディレクトリ上でnpm initとbower initを実行して、package.json と bower.json を作っておく。 Grunt npm install grunt grunt-bower-task --save-dev // Gruntfile.js module.exports = function(grunt) { grunt.ini