This commit is contained in:
Ruud
2014-12-03 23:30:14 +01:00
parent 2a0e46fe00
commit 62cb57f217
+11 -1
View File
@@ -66,11 +66,21 @@ module.exports = function(grunt){
}
},
concat: {
options: {
separator: ''
},
dist: {
src: ['<%= config.tmp %>/styles/**/*.css'],
dest: '<%= config.tmp %>/test.css'
}
},
// COOL TASKS ==============================================================
watch: {
scss: {
files: ['**/*.{scss,sass}'],
tasks: ['sass:server', 'autoprefixer'],
tasks: ['sass:server', 'autoprefixer', 'concat'],
options: {
'livereload': true
}