Browse Source

Run scss > css on grunt start

pull/5180/head
Ruud 10 years ago
parent
commit
7865c9650e
  1. 4
      Gruntfile.js

4
Gruntfile.js

@ -102,7 +102,7 @@ module.exports = function(grunt){
options: {
logConcurrentOutput: true
},
tasks: ['shell:runCouchPotato', 'sass:server', 'autoprefixer', 'cssmin', 'watch']
tasks: ['shell:runCouchPotato', 'watch']
}
});
@ -116,6 +116,6 @@ module.exports = function(grunt){
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-shell');
grunt.registerTask('default', ['concurrent']);
grunt.registerTask('default', ['sass:server', 'autoprefixer', 'cssmin', 'concurrent']);
};

Loading…
Cancel
Save