I am trying do the following:
FOLDERS.GRUNT = "js/grunt"
grunt.initConfig({
//copies from .tmp to final locations
copy: {
dist: {
files: [{
expand: true,
dot: true,
dest: FOLDERS.GRUNT,
src: [
FOLDERS.GRUNT + '/.tmp/*.js'
]
}
]
}
},
I would expect the files to end up in js/grunt but for some reason ends up in js/grunt/js/grunt/.tmp/myfile.js
Also tried using cwd:FOLDERS.GRUNT but has the same issue.
Well answer is quite simple really:
use: