# grunt-cp **Repository Path**: mirrors_leecade/grunt-cp ## Basic Information - **Project Name**: grunt-cp - **Description**: Grunt plugin to copy/move files around - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # grunt-cp Copies files (recursively) ## Getting Started Install this grunt plugin next to your project's [grunt.js gruntfile][getting_started] with: ``npm install grunt-cp`` Then add this line to your project's ``grunt.js`` gruntfile: ```javascript grunt.loadNpmTasks('grunt-cp'); ``` [grunt]: https://github.com/cowboy/grunt [getting_started]: https://github.com/cowboy/grunt/blob/master/docs/getting_started.md ## Documentation Configure which files to be copied in your `initConfig`: ```javascript 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][grunt]. ## Release History * 8/31/12 - v0.1.0 - Initial release. ## License Copyright (c) 2012 Christian Verkerk Licensed under the MIT license.