You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/website/Gruntfile.js

37 lines
655 B

// jshint node:true
module.exports = function(grunt) {
// Load plugins here
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-recess');
// Configuration goes here
grunt.initConfig({
less: {
development:{
files: {
"source/stylesheets/main.css": "source/stylesheets/main.less"
}
}
},
watch: {
less: {
files: 'source/stylesheets/*.less',
tasks: ['less']
}
}
});
// CSS Compilation task
grunt.registerTask('default', ['watch']);
};