Patch Changes
-
#8688
28522ae
Thanks @petebacondarwin! - Ensure that Node.js polyfills are pre-optimized before the first requestPreviously, these polyfills were only optimized on demand when Vite became aware of them.
This was either because Vite was able to find an import to a polyfill when statically analysing the import tree of the entry-point,
or when a polyfilled module was dynamically imported as part of a executing code to handle a request.In the second case, the optimizing of the dynamically imported dependency causes a reload of the Vite server, which can break applications that are holding state in modules during the request.
This is the case of most React type frameworks, in particular React Router.Now, we pre-optimize all the possible Node.js polyfills when the server starts before the first request is handled.
-
#8680
8dcc50f
Thanks @dario-piotrowicz! - fix: make sure that users can specify inspector port0
to use a random port -
#8572
e6fea13
Thanks @dario-piotrowicz! - Add validation for theconfigPath
option in the plugin config that clearly indicates any issues. -
#8672
d533f5e
Thanks @dario-piotrowicz! - replace modules runtime checks with vite environment config validationcurrently at runtime the vite plugin applies checks to make sure that
external files are not being imported, such checks are however too
restrictive and prevent worker code to perform some valid imports from
node_modules (e.g.import stylesheet from "<some-package>/styles.css?url";
)the changes here replace the runtime checks (allowing valid imports from
node_modules) with some validation to the worker vite environment configurations,
specifically they make sure that the environment doesn't specify invalid
optimizeDeps.exclude
andresolve.external
options -
#8680
8dcc50f
Thanks @dario-piotrowicz! - fix: make sure that the plugin keeps looking for available inspector ports by defaultthis change updates the plugin so that if an inspector port is not specified and the
default inspector port (9229) is not available it keeps looking for other available
port instead of crashing -
Updated dependencies [
3993374
,8df60b5
,ec1f813
,624882e
]:- wrangler@4.7.0
- @cloudflare/unenv-preset@2.3.1