Grunt
Gruntのタスクを追加しようと思いGruntfileを変更したら、grunt実行時に下の様なエラーが出るようになってしまいました。 (node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for…
rbenvで別バージョンのRubyを使うように変更したらgruntでcompassを使っていたプロジェクトで下記のようなエラーが出てコンパイル出来なくなってしまいました。 » grunt compass:dist Running "compass:dist" (compass) task rbenv: compass: command not fo…
jade, scssのコンパイル、jsとcssのmin化とgzip化な感じで使っています。 // Gruntfile.js module.exports = function(grunt) { var pkg = grunt.file.readJSON('package.json'); grunt.initConfig({ jade: { compile: { expand: true, cwd: 'dev/jade/publi…
最近scssやjs, jadeのコンパイルや結合, min化にもっぱらgruntを使っています。 例えば concatで、自作のjsを結合してmain.jsに、jQueryなどのライブラリを結合してlib.jsを作成 uglifyで、main.jsをmin化してmain.min.jsを作成 再びconcatで、lib.jsとmain.…