I have this part of an object :
js: {
cwd: 'src/js',
src: [ "src/js/*.js", "src/js/*.min.js" ],
dest: 'dist/js'
}
How can I insert the cwd
property into src
property so it looks like the following?
src: [ `${cwd (or js.cwd)}/*.JS .. etc ]