From 8c5506470417ebdc2e58f7d7e3bd40ea11892ff4 Mon Sep 17 00:00:00 2001 From: Marc Ducobu Date: Tue, 11 Nov 2014 08:45:33 +0100 Subject: [PATCH] Adding routine to copy css into web/bundles/chillmain/ --- Resources/Gruntfile.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Resources/Gruntfile.js b/Resources/Gruntfile.js index 80fc3debd..0a96109a6 100644 --- a/Resources/Gruntfile.js +++ b/Resources/Gruntfile.js @@ -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']); }; \ No newline at end of file