Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.16 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.16 KB

This plugin is now deprecated.

Please checkout the community-supported grunt-contrib-copy instead.

grunt-cp

Copies files (recursively)

Getting Started

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');

Documentation

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
});

Contributing

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.

Release History

  • 8/31/12 - v0.1.0 - Initial release.

License

Copyright (c) 2012 Christian Verkerk Licensed under the MIT license.