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.
39 lines
812 B
39 lines
812 B
10 years ago
|
/**
|
||
|
* Copy files and folders.
|
||
|
*
|
||
|
* ---------------------------------------------------------------
|
||
|
*
|
||
|
* # dev task config
|
||
|
* Copies all directories and files, exept coffescript and less fiels, from the sails
|
||
|
* assets folder into the .tmp/public directory.
|
||
|
*
|
||
|
* # build task config
|
||
|
* Copies all directories nd files from the .tmp/public directory into a www directory.
|
||
|
*
|
||
|
* For usage docs see:
|
||
|
* https://github.com/gruntjs/grunt-contrib-copy
|
||
|
*/
|
||
|
module.exports = function(grunt) {
|
||
|
|
||
|
grunt.config.set('copy', {
|
||
|
dev: {
|
||
|
files: [{
|
||
|
expand: true,
|
||
|
cwd: './assets',
|
||
|
src: ['**/*.!(coffee|less)'],
|
||
|
dest: '.tmp/public'
|
||
|
}]
|
||
|
},
|
||
|
build: {
|
||
|
files: [{
|
||
|
expand: true,
|
||
|
cwd: '.tmp/public',
|
||
|
src: ['**/*'],
|
||
|
dest: 'www'
|
||
|
}]
|
||
|
}
|
||
|
});
|
||
|
|
||
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
||
|
};
|