Adding routine to copy css into web/bundles/chillmain/

This commit is contained in:
Marc Ducobu 2014-11-11 08:45:33 +01:00
parent 061e4eb118
commit 8c55064704

View File

@ -39,6 +39,16 @@ module.exports = function(grunt) {
expand: true,
}
]
},
chill_standard: {
files: [
{
cwd: './public',
src: '**',
dest: '../../../../web/bundles/chillmain/',
expand: true,
}
]
}
},
sass: {
@ -75,7 +85,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.registerTask('generatecss', ['clean:css', 'sass']);
grunt.registerTask('generatecss', ['clean:css', 'sass', 'copy:chill_standard']);
grunt.registerTask('dependencies', ['bower', 'copy']);
grunt.registerTask('default', ['dependencies', 'generatecss']);
};