Skip to content

Instantly share code, notes, and snippets.

@mzgoddard
Last active August 29, 2015 13:55
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 mzgoddard/8724781 to your computer and use it in GitHub Desktop.
Save mzgoddard/8724781 to your computer and use it in GitHub Desktop.
copy: {
inplace: {
files: [{
expand: true,
cwd: 'src',
src: '**/*.js',
dest: 'src'
}],
options: {
process: function(content, filepath) {
return content + '\n';
}
}
}
}
copy: {
inplace: {
files: {
'file.js': 'file.js'
},
options: {
process: function(content, filepath) {
return content + '\n';
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment