You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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 text was updated successfully, but these errors were encountered: