1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Improving Browserify speeds

This commit is contained in:
dominiclord
2016-04-04 20:08:01 -04:00
parent 061380abf9
commit 6d3b8134f1
3 changed files with 6 additions and 11 deletions

View File

@@ -26,7 +26,7 @@ module.exports = function(grunt) {
// Register tasks
grunt.registerTask('default', ['build']);
grunt.registerTask('sync', ['browserSync', 'watch', 'notify:watch']);
grunt.registerTask('sync', ['browserSync', 'browserify:dev', 'watch', 'notify:watch']);
grunt.registerTask('build', [
// CSS
'sass',
@@ -41,7 +41,7 @@ module.exports = function(grunt) {
// Notify
'notify:build'
]);
grunt.registerTask('w', ['watch', 'notify:watch']);
grunt.registerTask('w', ['browserify:dev', 'watch', 'notify:watch']);
grunt.registerTask('c', [
'csscomb'
]);