vite 6.0.0-beta.3 → 6.0.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/vite.js CHANGED
@@ -43,6 +43,7 @@ if (debugIndex > 0) {
43
43
 
44
44
  function start() {
45
45
  try {
46
+ // eslint-disable-next-line n/no-unsupported-features/node-builtins -- it is supported in Node 22.8.0+ and only called if it exists
46
47
  module.enableCompileCache?.()
47
48
  } catch {}
48
49
  return import('../dist/node/cli.js')
@@ -155,7 +155,7 @@ class HMRClient {
155
155
  }
156
156
  // After an HMR update, some modules are no longer imported on the page
157
157
  // but they may have left behind side effects that need to be cleaned up
158
- // (.e.g style injections)
158
+ // (e.g. style injections)
159
159
  async prunePaths(paths) {
160
160
  await Promise.all(
161
161
  paths.map((path) => {