Skip to content

Instantly share code, notes, and snippets.

@brunogarcia
Created October 14, 2015 08:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save brunogarcia/e46c4fb1880f0755ceda to your computer and use it in GitHub Desktop.
/*
Copy
Copy files and folders.
https://github.com/gruntjs/grunt-contrib-copy
*/
'copy': {
main: {
files: [
{
'expand': true,
'flatten': true,
'src': ['<%= config.dev %>/favicon.ico'],
'dest': '<%= config.dist %>/',
'filter': 'isFile'
},
{
'expand': true,
'cwd': '<%= config.dev %>/assets/',
'src': ['**'],
'dest': '<%= config.dist %>/assets/'
}
]
},
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment