grunt-contrib-copy
grunt-contrib-copy copied to clipboard
Seems suddenly this stopped working
All I am trying to do is copy a text file from a "from" folder to "test-grunt-target-2" folder.
It was working fine, but now it seems taking for ever. I terminate the console since its taking more than 1 min for copying a 20Kb text file.
copy: {
target2: {
files: [
{
cwd: 'from/',
expand: true,
src: ['**/*.*'],
dest: 'test-grunt-target-2'
}
]
}
},