Update project to have watch dependency and grunt less automation.
This commit is contained in:
bovenliggende
47a3016a73
commit
10abe635bf
24
Gruntfile.js
24
Gruntfile.js
@ -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']);
|
||||
}
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
Laden…
Verwijs in nieuw issue
Block a user