Merge pull request #11 from chaseconey/devSetup
Update project to have watch dependency and grunt less automation.
This commit is contained in:
commit
063ef530cf
24
Gruntfile.js
24
Gruntfile.js
@ -1,5 +1,7 @@
|
|||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
grunt.loadNpmTasks('grunt-php');
|
grunt.loadNpmTasks('grunt-php');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-less');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
|
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
php: {
|
php: {
|
||||||
@ -10,8 +12,28 @@ module.exports = function(grunt) {
|
|||||||
port: 8085
|
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']);
|
grunt.registerTask('default', ['php']);
|
||||||
}
|
}
|
@ -6,5 +6,8 @@
|
|||||||
"grunt": "~0.4.1",
|
"grunt": "~0.4.1",
|
||||||
"grunt-php": "~0.1.1",
|
"grunt-php": "~0.1.1",
|
||||||
"grunt-contrib-less": "~0.5.2"
|
"grunt-contrib-less": "~0.5.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"grunt-contrib-watch": "~0.4.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user