Closed rendomnet closed 3 years ago
If I use npm script "copy": "cpy './package.json' dist"
"copy": "cpy './package.json' dist"
npm run copy it will give me error Cannot copy'./package.json': the file doesn't exist
npm run copy
Cannot copy
: the file doesn't exist
But if I remove ' like this cpy ./package.json dist it will run correctly
cpy ./package.json dist
If I use npm script
"copy": "cpy './package.json' dist"
npm run copy
it will give me errorCannot copy
'./package.json': the file doesn't exist
But if I remove ' like this
cpy ./package.json dist
it will run correctly