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
Lightning is currently on esbuild 0.17.13. The latest version of esbuild, as of this writing is 0.25.0.
We need to upgrade to the latest version to get all the improvements and fixes that have been added.
At the moment, trying to upgrade to > 0.20 results in the following error when you try to --minify the assets:
✘ [ERROR] Could not resolve "path"
node_modules/@typescript/vfs/dist/vfs.esm.js:575:17:
575 │ return require(String.fromCharCode(112, 97, 116, 104));
╵ ^
The package "path" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "--platform=node" to do that, which will remove this error.1 error** (Mix) `mix esbuild default --minify` exited with 1
The text was updated successfully, but these errors were encountered:
Details
Lightning is currently on esbuild
0.17.13
. The latest version of esbuild, as of this writing is0.25.0
.We need to upgrade to the latest version to get all the improvements and fixes that have been added.
At the moment, trying to upgrade to
> 0.20
results in the following error when you try to--minify
the assets:The text was updated successfully, but these errors were encountered: