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
Currently, esbuild is a dev dependency in most JS/TS plugins to further shrink the size of each plugin by building dependencies. However, esbuild is currently a 0.x dependency so it won't automatically get a new minor version when we generate package-lock.json when creating a new plugin version.
We should automate running npm install esbuild@latest --save-dev in the fetcher code to pick up new esbuild versions automatically. See #1252 (comment) for more info.
The text was updated successfully, but these errors were encountered:
Currently, esbuild is a dev dependency in most JS/TS plugins to further shrink the size of each plugin by building dependencies. However, esbuild is currently a 0.x dependency so it won't automatically get a new minor version when we generate
package-lock.json
when creating a new plugin version.We should automate running
npm install esbuild@latest --save-dev
in the fetcher code to pick up new esbuild versions automatically. See #1252 (comment) for more info.The text was updated successfully, but these errors were encountered: