Please checkout the community-supported grunt-contrib-copy instead.
Copies files (recursively)
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-cp
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-cp');
Configure which files to be copied in your initConfig
:
grunt.initConfig({
// ... other configs
// copy media
cp: {
media: {
src: 'public/media',
dest: 'dist/media'
}
},
// ... other configs
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
- 8/31/12 - v0.1.0 - Initial release.
Copyright (c) 2012 Christian Verkerk Licensed under the MIT license.