The npm run build build script has been updated in newer versions of rollup.
Currently this is what we have:
"build": "ROLLUP_WATCH=false rollup -c --bundleConfigAsCjs",
Now that we have upgraded rollup following a reported security vulnerability in Rollup, it should be:
build”: “ROLLUP -w -c --bundleConfigAsCjs
What we have seems to work without any warnings at the moment
Thanks to Caroline Kirkhope at System C for noticing this
The
npm run build
build script has been updated in newer versions of rollup. Currently this is what we have:"build": "ROLLUP_WATCH=false rollup -c --bundleConfigAsCjs",
Now that we have upgraded rollup following a reported security vulnerability in Rollup, it should be:build”: “ROLLUP -w -c --bundleConfigAsCjs
What we have seems to work without any warnings at the moment Thanks to Caroline Kirkhope at System C for noticing this