mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
Adding routine to copy css into web/bundles/chillmain/
This commit is contained in:
parent
061e4eb118
commit
8c55064704
@ -39,6 +39,16 @@ module.exports = function(grunt) {
|
|||||||
expand: true,
|
expand: true,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
chill_standard: {
|
||||||
|
files: [
|
||||||
|
{
|
||||||
|
cwd: './public',
|
||||||
|
src: '**',
|
||||||
|
dest: '../../../../web/bundles/chillmain/',
|
||||||
|
expand: true,
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
sass: {
|
sass: {
|
||||||
@ -75,7 +85,7 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
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('dependencies', ['bower', 'copy']);
|
||||||
grunt.registerTask('default', ['dependencies', 'generatecss']);
|
grunt.registerTask('default', ['dependencies', 'generatecss']);
|
||||||
};
|
};
|
Loading…
x
Reference in New Issue
Block a user