grunt-contrib-copy icon indicating copy to clipboard operation
grunt-contrib-copy copied to clipboard

Copy files and folders.

Results 60 grunt-contrib-copy issues
Sort by recently updated
recently updated
newest added

`nonull: true` doesn't throw if path from `src` is wrong. Using grunt-contrib-copy 0.5.0 grunt-cli v0.1.13 grunt v0.4.2 node v0.10.25 npm 1.3.24

.filename not copied with src: **/** or ** or ['**','.angular-cli.json'] or **/*.* **ONLY Works with /.*,** `['**/*.*','**/.*'],` `src: ['**','**/.*'],`

Having my copy object written for multiple files as in the docs, but adding the process option, does not work as it should. The files get copied, but not modified....

Hello, I have a task that works perfectly without use process function. But I have to analyze a specific file and replace a content, so it is require use process....

``` copy: { main: { files: [ {src: ['something/**'], dest: 'output/'}, {src: ['anotherthing/**'], dest: 'output/'}, ], options: { process: function (content, srcpath) { return content; // to keep it short...

` copy: { options: { // exclude binary format from the processContent function noProcess: [ '**/*.{png,gif,jpg,ico,psd,ttf,otf,woff,svg}' ] }, libs: { expand: true, cwd: '/test/src/home/', src: '**', dest: '/test/dist/', }, },...

I've setup a copy-task, but the images still getting processed/corrupt. What can be the cause? As far as I know, I'm not doing anything wrong... I'm using Grunt-contrib-copy version 0.5.0...

can we have option to minify the js libraries while copying using grunt-contrib-copy

launching tests with grunt-contrib-copy v1.0.0 fails on **i386** Linux with: ``` ... Running "nodeunit:tests" (nodeunit) task Testing copy_test.js.......F. >> copy - timestampEqual >> Error: 1493723278009 == 1493723278082 >> at Object.timestampEqual...

When copying a symlink, I've usually expected the contents of the link's target directory to be copied. Since updating to Grunt 1.0 an empty directory with the name of the...