grunt-contrib-copy
grunt-contrib-copy copied to clipboard
Copy files and folders.
nonull does not fail if src is an array of files Example: ``` javascript copy: { main: { nonull: true, cwd: '../lib/', expand: true, src: csslibfiles, dest: '../publish/~buildcss', filter: 'isFile',...
Hello guys! I'm pretty new to grunt, so I need some help. I want to copy files from some dir to another and they look like this: - parentpath/ (source...
Hello, I'm new to Grunt so I'm now following a tutorial. There seems to be a problem with the ''copy'' extension. At first I thought I was doing something wrong,...
``` myCopy: { src: 'src/myFile.txt', dest: 'dest/myFile.txt' } ``` Working except that if src/myFile,txt not exists - no reporting about an error. Case 2: ``` myCopy: { src: 'src/fonts/*', dest:...
Would be nice to have a feature to be able to copy one folder to several destinations. So you don't need to duplicate the whole configuration block for that, but...
Running on Amazon Linux AMI ``` (node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral. ... (node) warning: Recursive...
The following will copy `../src/index.html` to _itself_ rather than failing or copying to `../dest/index.html` as one would expect: ``` copy: { main : { files: [ { expand: true, src...
I noticed some strange behavior with the copy tasks on a server-based grunt build. The first file itself was copying OK, but when the task attempted to sync the timestamps...
There does not seem to be a way to differentiate between which file is which. All files going through process all report themselves as app/index.html which as you can guess...
Hi, I have the following code: copy: { main: { files: [{ src: ['client/resources/**', 'client/lib/**'], dest: '.build/' }, { src: 'server/*_/_', dest: '.build/' }, { src: ['_._', '!*.log'], dest: '.build/'...