Skip to content

Instantly share code, notes, and snippets.

@robksawyer
Created May 21, 2015 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robksawyer/2aac6d0cdb73bfa8239f to your computer and use it in GitHub Desktop.
Save robksawyer/2aac6d0cdb73bfa8239f to your computer and use it in GitHub Desktop.
/**
* 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'
}]
},
//Added bower
bower: {
files: [{
//for bootstrap fonts
expand: true,
dot: true,
cwd: 'bower_components/bootstrap/dist',
src: ['fonts/*.*'],
dest: '.tmp/public/styles'
}, {
//for font-awesome
expand: true,
dot: true,
cwd: 'bower_components/fontawesome',
src: ['fonts/*.*'],
dest: '.tmp/public/styles'
}]
}
});
grunt.loadNpmTasks('grunt-contrib-copy');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment