Open RyanPWalker opened 4 years ago
Running yarn build with the following npm script does absolutely nothing, with or without the escaped double quotes.
yarn build
"scripts": { "build": "rm -rf dist && NODE_ENV=production webpack -p --config webpack.config.js && cpx \"/dist/*.js\" \"/static/\"", }
Node 12.13.0 cpx 1.5.0 yarn 1.19.1 latest MacOS
Are you sure you want /dist and /static ... those paths would point to the root of your file system, right?
/dist
/static
Try this: ... && cpx \"dist/*.js\" \"static/\"",
&& cpx \"dist/*.js\" \"static/\"",
Running
yarn build
with the following npm script does absolutely nothing, with or without the escaped double quotes.Node 12.13.0 cpx 1.5.0 yarn 1.19.1 latest MacOS