8
0
Fork 0

Update project to have watch dependency and grunt less automation.

Dieser Commit ist enthalten in:
Chase Coney 2013-07-14 17:44:21 -05:00
Ursprung 47a3016a73
Commit 10abe635bf
2 geänderte Dateien mit 26 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -1,5 +1,7 @@
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-php');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.initConfig({
php: {
@ -10,8 +12,28 @@ module.exports = function(grunt) {
port: 8085
}
}
}
},
less: {
development: {
files: {
"css/daux-blue.css": "less/daux-blue.less",
"css/daux-green.css": "less/daux-green.less",
"css/daux-navy.css": "less/daux-navy.less",
"css/daux-red.css": "less/daux-red.less"
}
}
},
watch: {
scripts: {
files: ['less/**/*.less'],
tasks: ['less'],
options: {
nospawn: true
},
},
},
});
//grunt.registerTask('default', ['less', 'watch']);
grunt.registerTask('default', ['php']);
}

Datei anzeigen

@ -6,5 +6,8 @@
"grunt": "~0.4.1",
"grunt-php": "~0.1.1",
"grunt-contrib-less": "~0.5.2"
},
"devDependencies": {
"grunt-contrib-watch": "~0.4.4"
}
}