comparison Gruntfile.js @ 434:499a7ff5c990

cm: Remove `imagemin` temporarily.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 30 Mar 2017 20:14:16 -0700
parents 67cda09b0524
children
comparison
equal deleted inserted replaced
433:10a82dec3fe4 434:499a7ff5c990
119 grunt.loadNpmTasks('grunt-contrib-imagemin'); 119 grunt.loadNpmTasks('grunt-contrib-imagemin');
120 grunt.loadNpmTasks('grunt-contrib-jshint'); 120 grunt.loadNpmTasks('grunt-contrib-jshint');
121 grunt.loadNpmTasks('grunt-contrib-watch'); 121 grunt.loadNpmTasks('grunt-contrib-watch');
122 122
123 // Default task(s). 123 // Default task(s).
124 grunt.registerTask('default', ['jshint', 'less:production', 'requirejs:production', 'imagemin:all', 'copy:production']); 124 grunt.registerTask('default', ['jshint', 'less:production', 'requirejs:production', 'copy:production']);
125 125
126 // Other tasks. 126 // Other tasks.
127 grunt.registerTask('dev', ['less:development', 'requirejs:development', 'copy:production', 'copy:development']); 127 grunt.registerTask('dev', ['less:development', 'requirejs:development', 'copy:production', 'copy:development']);
128 }; 128 };
129 129