chore(deps): update dependency vite to v3.2.0 #2580

Merged
konrad merged 1 commits from renovate/vite-3.x into main 2022-10-27 06:29:28 +00:00
Member

This PR contains the following updates:

Package Type Update Change
vite (source) devDependencies minor 3.1.8 -> 3.2.0

Release Notes

vitejs/vite

v3.2.0

Compare Source

Main Changes
Multiple Entries for Library Mode

Library mode now supports multiple entries:

  lib: {
    entry: {
        primary: 'src/index.ts',
        secondary: 'src/secondary.ts'
    },
    formats: ['es', 'cjs']
  }
  // => primary.es.js, primary.cjs.js, secondary.es.js, secondary.cjs.js

Check out the PR #​7047, and the build.lib config docs

build.modulePreload options

Vite now allows filtering and modifying module preload dependencies for each entry and async chunk. experimental.renderBuiltUrl will also get called for preload asset paths. And build.modulePreload.resolveDependencies will be called both for JS dynamic imports preload lists and also for HTML preload lists for chunks imported from entry HTML files. Refer to the PR for more context #​9938 and check out the modulePreload config docs. Note: build.modulePreloadPolyfill is now deprecated, please migrate to build.modulePreload.polyfill.

Include Duplicate Assets in the Manifest

Laravel and other backends integrations will now get entries for every asset file, even if they have been de-duplicated. See #​9928 for more information.

Customizable ErrorOverlay

You can now customize the ErrorOverlay by using css parts. Check out the PR for more details: #​10234.

Features
Bug Fixes
Previous Changelogs
3.2.0-beta.4 (2022-10-24)

See 3.2.0-beta.4 changelog

3.2.0-beta.3 (2022-10-20)

See 3.2.0-beta.3 changelog

3.2.0-beta.2 (2022-10-14)

See 3.2.0-beta.2 changelog

3.2.0-beta.1 (2022-10-10)

See 3.2.0-beta.1 changelog

3.2.0-beta.0 (2022-10-05)

See 3.2.0-beta.0 changelog


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [vite](https://github.com/vitejs/vite/tree/main/#readme) ([source](https://github.com/vitejs/vite)) | devDependencies | minor | [`3.1.8` -> `3.2.0`](https://renovatebot.com/diffs/npm/vite/3.1.8/3.2.0) | --- ### Release Notes <details> <summary>vitejs/vite</summary> ### [`v3.2.0`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#&#8203;320-2022-10-26) [Compare Source](https://github.com/vitejs/vite/compare/v3.1.8...4198e3428457b648aa622b665035bebe2821c660) ##### Main Changes ##### Multiple Entries for Library Mode Library mode now supports multiple entries: ```js lib: { entry: { primary: 'src/index.ts', secondary: 'src/secondary.ts' }, formats: ['es', 'cjs'] } // => primary.es.js, primary.cjs.js, secondary.es.js, secondary.cjs.js ``` Check out the PR [#&#8203;7047](https://github.com/vitejs/vite/issues/7047), and the [`build.lib` config docs](https://main.vitejs.dev/config/build-options.html#build-lib) ##### `build.modulePreload` options Vite now allows filtering and modifying module preload dependencies for each entry and async chunk. [`experimental.renderBuiltUrl`](https://vitejs.dev/guide/build.html#advanced-base-options) will also get called for preload asset paths. And `build.modulePreload.resolveDependencies` will be called both for JS dynamic imports preload lists and also for HTML preload lists for chunks imported from entry HTML files. Refer to the PR for more context [#&#8203;9938](https://github.com/vitejs/vite/issues/9938) and check out the [modulePreload config docs](https://vitejs.dev/config/build-options.html#build-modulepreload). Note: `build.modulePreloadPolyfill` is now deprecated, please migrate to `build.modulePreload.polyfill`. ##### Include Duplicate Assets in the Manifest Laravel and other backends integrations will now get entries for every asset file, even if they have been de-duplicated. See [#&#8203;9928](https://github.com/vitejs/vite/issues/9928) for more information. ##### Customizable ErrorOverlay You can now customize the ErrorOverlay by using [css parts](developer.mozilla.org/en-US/docs/Web/CSS/::part). Check out the PR for more details: [#&#8203;10234](https://github.com/vitejs/vite/issues/10234). ##### Features - feat(build): experimental copyPublicDir option ([#&#8203;10550](https://github.com/vitejs/vite/issues/10550)) ([4f4a39f](https://github.com/vitejs/vite/commit/4f4a39f)), closes [#&#8203;10550](https://github.com/vitejs/vite/issues/10550) - feat(css): export preprocessCSS API ([#&#8203;10429](https://github.com/vitejs/vite/issues/10429)) ([177b427](https://github.com/vitejs/vite/commit/177b427)), closes [#&#8203;10429](https://github.com/vitejs/vite/issues/10429) - feat(preview): support outDir option ([#&#8203;10418](https://github.com/vitejs/vite/issues/10418)) ([15b90b3](https://github.com/vitejs/vite/commit/15b90b3)), closes [#&#8203;10418](https://github.com/vitejs/vite/issues/10418) - feat: include line and column in error format ([#&#8203;10529](https://github.com/vitejs/vite/issues/10529)) ([d806c4a](https://github.com/vitejs/vite/commit/d806c4a)), closes [#&#8203;10529](https://github.com/vitejs/vite/issues/10529) - feat: reuse opening tab in chromium browsers when start dev server ([#&#8203;10485](https://github.com/vitejs/vite/issues/10485)) ([1a2e7a8](https://github.com/vitejs/vite/commit/1a2e7a8)), closes [#&#8203;10485](https://github.com/vitejs/vite/issues/10485) - feat: update esbuild compilation affecting fields ([#&#8203;10374](https://github.com/vitejs/vite/issues/10374)) ([f542727](https://github.com/vitejs/vite/commit/f542727)), closes [#&#8203;10374](https://github.com/vitejs/vite/issues/10374) - feat(proxy): Include URL of request in proxy errors ([#&#8203;10508](https://github.com/vitejs/vite/issues/10508)) ([27e2832](https://github.com/vitejs/vite/commit/27e2832)), closes [#&#8203;10508](https://github.com/vitejs/vite/issues/10508) - refactor: delete dependent pre built proxy modules ([#&#8203;10427](https://github.com/vitejs/vite/issues/10427)) ([b3b388d](https://github.com/vitejs/vite/commit/b3b388d)), closes [#&#8203;10427](https://github.com/vitejs/vite/issues/10427) - feat(server): invalidate module with hmr ([#&#8203;10333](https://github.com/vitejs/vite/issues/10333)) ([8328011](https://github.com/vitejs/vite/commit/8328011)), closes [#&#8203;10333](https://github.com/vitejs/vite/issues/10333) - feat: build.modulePreload options ([#&#8203;9938](https://github.com/vitejs/vite/issues/9938)) ([e223f84](https://github.com/vitejs/vite/commit/e223f84)), closes [#&#8203;9938](https://github.com/vitejs/vite/issues/9938) - feat: customize ErrorOverlay ([#&#8203;10234](https://github.com/vitejs/vite/issues/10234)) ([fe4dc8d](https://github.com/vitejs/vite/commit/fe4dc8d)), closes [#&#8203;10234](https://github.com/vitejs/vite/issues/10234) - feat: dynamic import support ?url and ?worker ([#&#8203;8261](https://github.com/vitejs/vite/issues/8261)) ([0cb01ca](https://github.com/vitejs/vite/commit/0cb01ca)), closes [#&#8203;8261](https://github.com/vitejs/vite/issues/8261) - feat: include duplicate assets in the manifest ([#&#8203;9928](https://github.com/vitejs/vite/issues/9928)) ([42ecf37](https://github.com/vitejs/vite/commit/42ecf37)), closes [#&#8203;9928](https://github.com/vitejs/vite/issues/9928) - feat: support import.meta.hot.invalidate ([#&#8203;10244](https://github.com/vitejs/vite/issues/10244)) ([fb8ab16](https://github.com/vitejs/vite/commit/fb8ab16)), closes [#&#8203;10244](https://github.com/vitejs/vite/issues/10244) - feat: support postcss sugarss ([#&#8203;6705](https://github.com/vitejs/vite/issues/6705)) ([8ede2f1](https://github.com/vitejs/vite/commit/8ede2f1)), closes [#&#8203;6705](https://github.com/vitejs/vite/issues/6705) - feat(assets): allow `new URL` to resolve package assets ([#&#8203;7837](https://github.com/vitejs/vite/issues/7837)) ([bafccf5](https://github.com/vitejs/vite/commit/bafccf5)), closes [#&#8203;7837](https://github.com/vitejs/vite/issues/7837) - feat(client): add data-vite-dev-id attribute to style elements ([#&#8203;10080](https://github.com/vitejs/vite/issues/10080)) ([ea09fde](https://github.com/vitejs/vite/commit/ea09fde)), closes [#&#8203;10080](https://github.com/vitejs/vite/issues/10080) - feat(lib): allow multiple entries ([#&#8203;7047](https://github.com/vitejs/vite/issues/7047)) ([65a0fad](https://github.com/vitejs/vite/commit/65a0fad)), closes [#&#8203;7047](https://github.com/vitejs/vite/issues/7047) - feat(optimizer): Support bun lockfile format ([#&#8203;10288](https://github.com/vitejs/vite/issues/10288)) ([931d69b](https://github.com/vitejs/vite/commit/931d69b)), closes [#&#8203;10288](https://github.com/vitejs/vite/issues/10288) - refactor(types): bundle client types ([#&#8203;9966](https://github.com/vitejs/vite/issues/9966)) ([da632bf](https://github.com/vitejs/vite/commit/da632bf)), closes [#&#8203;9966](https://github.com/vitejs/vite/issues/9966) - refactor(types): simplify type exports ([#&#8203;10243](https://github.com/vitejs/vite/issues/10243)) ([291174d](https://github.com/vitejs/vite/commit/291174d)), closes [#&#8203;10243](https://github.com/vitejs/vite/issues/10243) - perf: cache compiled glob for `server.fs.deny` ([#&#8203;10044](https://github.com/vitejs/vite/issues/10044)) ([df560b0](https://github.com/vitejs/vite/commit/df560b0)), closes [#&#8203;10044](https://github.com/vitejs/vite/issues/10044) ##### Bug Fixes - fix: add a warning if css urls not exist during build time (fix [#&#8203;9800](https://github.com/vitejs/vite/issues/9800)) ([#&#8203;10331](https://github.com/vitejs/vite/issues/10331)) ([9f268da](https://github.com/vitejs/vite/commit/9f268da)), closes [#&#8203;9800](https://github.com/vitejs/vite/issues/9800) [#&#8203;10331](https://github.com/vitejs/vite/issues/10331) - fix: increase error overlay z-index ([#&#8203;10603](https://github.com/vitejs/vite/issues/10603)) ([1157941](https://github.com/vitejs/vite/commit/1157941)), closes [#&#8203;10603](https://github.com/vitejs/vite/issues/10603) - fix: revert es-module-lexer version ([#&#8203;10614](https://github.com/vitejs/vite/issues/10614)) ([cffe5c9](https://github.com/vitejs/vite/commit/cffe5c9)), closes [#&#8203;10614](https://github.com/vitejs/vite/issues/10614) - fix: when the file path is an absolute path, parsing causes parameter loss ([#&#8203;10449](https://github.com/vitejs/vite/issues/10449)) ([df86990](https://github.com/vitejs/vite/commit/df86990)), closes [#&#8203;10449](https://github.com/vitejs/vite/issues/10449) - fix(config): resolve build options with fallback ([#&#8203;10645](https://github.com/vitejs/vite/issues/10645)) ([f7021e3](https://github.com/vitejs/vite/commit/f7021e3)), closes [#&#8203;10645](https://github.com/vitejs/vite/issues/10645) - fix(deps): update all non-major dependencies ([#&#8203;10610](https://github.com/vitejs/vite/issues/10610)) ([bb95467](https://github.com/vitejs/vite/commit/bb95467)), closes [#&#8203;10610](https://github.com/vitejs/vite/issues/10610) - fix(hmr): cannot reload after missing import on server startup ([#&#8203;9534](https://github.com/vitejs/vite/issues/9534)) ([#&#8203;10602](https://github.com/vitejs/vite/issues/10602)) ([ee7c28a](https://github.com/vitejs/vite/commit/ee7c28a)), closes [#&#8203;9534](https://github.com/vitejs/vite/issues/9534) [#&#8203;10602](https://github.com/vitejs/vite/issues/10602) - fix(css): strip BOM (fixes [#&#8203;10043](https://github.com/vitejs/vite/issues/10043)) ([#&#8203;10577](https://github.com/vitejs/vite/issues/10577)) ([e0463bd](https://github.com/vitejs/vite/commit/e0463bd)), closes [#&#8203;10043](https://github.com/vitejs/vite/issues/10043) [#&#8203;10577](https://github.com/vitejs/vite/issues/10577) - fix(ssr): resolve with isRequire true ([#&#8203;10569](https://github.com/vitejs/vite/issues/10569)) ([7b81210](https://github.com/vitejs/vite/commit/7b81210)), closes [#&#8203;10569](https://github.com/vitejs/vite/issues/10569) - fix: prefer exports when resolving ([#&#8203;10371](https://github.com/vitejs/vite/issues/10371)) ([3259006](https://github.com/vitejs/vite/commit/3259006)), closes [#&#8203;10371](https://github.com/vitejs/vite/issues/10371) - fix(config): partial deno support ([#&#8203;10446](https://github.com/vitejs/vite/issues/10446)) ([c4489ea](https://github.com/vitejs/vite/commit/c4489ea)), closes [#&#8203;10446](https://github.com/vitejs/vite/issues/10446) - fix(config): skip resolve builtin modules ([#&#8203;10420](https://github.com/vitejs/vite/issues/10420)) ([ecba3f8](https://github.com/vitejs/vite/commit/ecba3f8)), closes [#&#8203;10420](https://github.com/vitejs/vite/issues/10420) - fix(ssr): handle parallel hookNodeResolve ([#&#8203;10401](https://github.com/vitejs/vite/issues/10401)) ([1a961d9](https://github.com/vitejs/vite/commit/1a961d9)), closes [#&#8203;10401](https://github.com/vitejs/vite/issues/10401) - fix(cli): when the user enters the same command ([#&#8203;10474](https://github.com/vitejs/vite/issues/10474)) ([2326f4a](https://github.com/vitejs/vite/commit/2326f4a)), closes [#&#8203;10474](https://github.com/vitejs/vite/issues/10474) - fix(config): don't use module condition (`import.meta.resolve`) (fixes [#&#8203;10430](https://github.com/vitejs/vite/issues/10430)) ([#&#8203;10528](https://github.com/vitejs/vite/issues/10528)) ([64f19b9](https://github.com/vitejs/vite/commit/64f19b9)), closes [#&#8203;10430](https://github.com/vitejs/vite/issues/10430) [#&#8203;10528](https://github.com/vitejs/vite/issues/10528) - fix(css): remove `?direct` in id for postcss process ([#&#8203;10514](https://github.com/vitejs/vite/issues/10514)) ([67e7bf2](https://github.com/vitejs/vite/commit/67e7bf2)), closes [#&#8203;10514](https://github.com/vitejs/vite/issues/10514) - fix(html): allow self closing on non-void elements ([#&#8203;10478](https://github.com/vitejs/vite/issues/10478)) ([29292af](https://github.com/vitejs/vite/commit/29292af)), closes [#&#8203;10478](https://github.com/vitejs/vite/issues/10478) - fix(legacy): restore entry chunk CSS inlining, reverts [#&#8203;9761](https://github.com/vitejs/vite/issues/9761) ([#&#8203;10496](https://github.com/vitejs/vite/issues/10496)) ([9cc808e](https://github.com/vitejs/vite/commit/9cc808e)), closes [#&#8203;9761](https://github.com/vitejs/vite/issues/9761) [#&#8203;10496](https://github.com/vitejs/vite/issues/10496) - chore: simplify filter plugin code ([#&#8203;10459](https://github.com/vitejs/vite/issues/10459)) ([5d9b810](https://github.com/vitejs/vite/commit/5d9b810)), closes [#&#8203;10459](https://github.com/vitejs/vite/issues/10459) - chore(deps): update all non-major dependencies ([#&#8203;10488](https://github.com/vitejs/vite/issues/10488)) ([15aa827](https://github.com/vitejs/vite/commit/15aa827)), closes [#&#8203;10488](https://github.com/vitejs/vite/issues/10488) - chore: update magic-string ([#&#8203;10364](https://github.com/vitejs/vite/issues/10364)) ([23c9259](https://github.com/vitejs/vite/commit/23c9259)), closes [#&#8203;10364](https://github.com/vitejs/vite/issues/10364) - chore(deps): update all non-major dependencies ([#&#8203;10393](https://github.com/vitejs/vite/issues/10393)) ([f519423](https://github.com/vitejs/vite/commit/f519423)), closes [#&#8203;10393](https://github.com/vitejs/vite/issues/10393) - chore(deps): update dependency [@&#8203;rollup/plugin-alias](https://github.com/rollup/plugin-alias) to v4 ([#&#8203;10394](https://github.com/vitejs/vite/issues/10394)) ([e2b4c8f](https://github.com/vitejs/vite/commit/e2b4c8f)), closes [#&#8203;10394](https://github.com/vitejs/vite/issues/10394) - feat(lib): cjs instead of umd as default format for multiple entries ([#&#8203;10315](https://github.com/vitejs/vite/issues/10315)) ([07d3fbd](https://github.com/vitejs/vite/commit/07d3fbd)), closes [#&#8203;10315](https://github.com/vitejs/vite/issues/10315) - fix: make client type work with `moduleResolution=node16` ([#&#8203;10375](https://github.com/vitejs/vite/issues/10375)) ([8c4df1f](https://github.com/vitejs/vite/commit/8c4df1f)), closes [#&#8203;10375](https://github.com/vitejs/vite/issues/10375) - fix(config): don't resolve by module field ([#&#8203;10347](https://github.com/vitejs/vite/issues/10347)) ([cc1c829](https://github.com/vitejs/vite/commit/cc1c829)), closes [#&#8203;10347](https://github.com/vitejs/vite/issues/10347) - fix(html): handle attrs with prefix (fixes [#&#8203;10337](https://github.com/vitejs/vite/issues/10337)) ([#&#8203;10381](https://github.com/vitejs/vite/issues/10381)) ([7b4d6e8](https://github.com/vitejs/vite/commit/7b4d6e8)), closes [#&#8203;10337](https://github.com/vitejs/vite/issues/10337) [#&#8203;10381](https://github.com/vitejs/vite/issues/10381) - fix(ssr): track var as function scope ([#&#8203;10388](https://github.com/vitejs/vite/issues/10388)) ([87b48f9](https://github.com/vitejs/vite/commit/87b48f9)), closes [#&#8203;10388](https://github.com/vitejs/vite/issues/10388) - fix: add module types ([#&#8203;10299](https://github.com/vitejs/vite/issues/10299)) ([0b89dd2](https://github.com/vitejs/vite/commit/0b89dd2)), closes [#&#8203;10299](https://github.com/vitejs/vite/issues/10299) - fix: css order problem in async chunk ([#&#8203;9949](https://github.com/vitejs/vite/issues/9949)) ([6c7b834](https://github.com/vitejs/vite/commit/6c7b834)), closes [#&#8203;9949](https://github.com/vitejs/vite/issues/9949) - fix: don't duplicate styles with dynamic import (fix [#&#8203;9967](https://github.com/vitejs/vite/issues/9967)) ([#&#8203;9970](https://github.com/vitejs/vite/issues/9970)) ([65f97bd](https://github.com/vitejs/vite/commit/65f97bd)), closes [#&#8203;9967](https://github.com/vitejs/vite/issues/9967) [#&#8203;9970](https://github.com/vitejs/vite/issues/9970) - fix: env variables override ([#&#8203;10113](https://github.com/vitejs/vite/issues/10113)) ([d619460](https://github.com/vitejs/vite/commit/d619460)), closes [#&#8203;10113](https://github.com/vitejs/vite/issues/10113) - fix: isFromTsImporter flag in worker virtual model ([#&#8203;10273](https://github.com/vitejs/vite/issues/10273)) ([78f74c9](https://github.com/vitejs/vite/commit/78f74c9)), closes [#&#8203;10273](https://github.com/vitejs/vite/issues/10273) - fix: properly close optimizer on server restart ([#&#8203;10028](https://github.com/vitejs/vite/issues/10028)) ([a32777f](https://github.com/vitejs/vite/commit/a32777f)), closes [#&#8203;10028](https://github.com/vitejs/vite/issues/10028) - fix: respect `mainFields` when resolving browser/module field (fixes [#&#8203;8659](https://github.com/vitejs/vite/issues/8659)) ([#&#8203;10071](https://github.com/vitejs/vite/issues/10071)) ([533d13c](https://github.com/vitejs/vite/commit/533d13c)), closes [#&#8203;8659](https://github.com/vitejs/vite/issues/8659) [#&#8203;10071](https://github.com/vitejs/vite/issues/10071) - fix: respect resolve.conditions, when resolving browser/require field ([#&#8203;9860](https://github.com/vitejs/vite/issues/9860)) ([9a83eaf](https://github.com/vitejs/vite/commit/9a83eaf)), closes [#&#8203;9860](https://github.com/vitejs/vite/issues/9860) - fix: support process each out dir when there are two or more ([#&#8203;9748](https://github.com/vitejs/vite/issues/9748)) ([ee3231c](https://github.com/vitejs/vite/commit/ee3231c)), closes [#&#8203;9748](https://github.com/vitejs/vite/issues/9748) - fix(build): fix resolution algorithm when `build.ssr` is true ([#&#8203;9989](https://github.com/vitejs/vite/issues/9989)) ([7229251](https://github.com/vitejs/vite/commit/7229251)), closes [#&#8203;9989](https://github.com/vitejs/vite/issues/9989) - fix(config): resolve implicit deps as absolute path ([#&#8203;10254](https://github.com/vitejs/vite/issues/10254)) ([ec1f3ae](https://github.com/vitejs/vite/commit/ec1f3ae)), closes [#&#8203;10254](https://github.com/vitejs/vite/issues/10254) - fix(css): missing css in lib mode ([#&#8203;10185](https://github.com/vitejs/vite/issues/10185)) ([e4c1c6d](https://github.com/vitejs/vite/commit/e4c1c6d)), closes [#&#8203;10185](https://github.com/vitejs/vite/issues/10185) - fix(deps): update all non-major dependencies ([#&#8203;10160](https://github.com/vitejs/vite/issues/10160)) ([6233c83](https://github.com/vitejs/vite/commit/6233c83)), closes [#&#8203;10160](https://github.com/vitejs/vite/issues/10160) - fix(deps): update all non-major dependencies ([#&#8203;10316](https://github.com/vitejs/vite/issues/10316)) ([a38b450](https://github.com/vitejs/vite/commit/a38b450)), closes [#&#8203;10316](https://github.com/vitejs/vite/issues/10316) - fix(deps): update rollup to `^2.79.1` ([#&#8203;10298](https://github.com/vitejs/vite/issues/10298)) ([2266d83](https://github.com/vitejs/vite/commit/2266d83)), closes [#&#8203;10298](https://github.com/vitejs/vite/issues/10298) - fix(esbuild): transpile with esnext in dev ([#&#8203;10207](https://github.com/vitejs/vite/issues/10207)) ([43b7b78](https://github.com/vitejs/vite/commit/43b7b78)), closes [#&#8203;10207](https://github.com/vitejs/vite/issues/10207) - fix(hmr): handle virtual module update ([#&#8203;10324](https://github.com/vitejs/vite/issues/10324)) ([7c4accb](https://github.com/vitejs/vite/commit/7c4accb)), closes [#&#8203;10324](https://github.com/vitejs/vite/issues/10324) - fix(optimizer): browser field bare import (fix [#&#8203;7599](https://github.com/vitejs/vite/issues/7599)) ([#&#8203;10314](https://github.com/vitejs/vite/issues/10314)) ([cba13e8](https://github.com/vitejs/vite/commit/cba13e8)), closes [#&#8203;7599](https://github.com/vitejs/vite/issues/7599) [#&#8203;10314](https://github.com/vitejs/vite/issues/10314) - fix(sass): reorder sass importers ([#&#8203;10101](https://github.com/vitejs/vite/issues/10101)) ([a543731](https://github.com/vitejs/vite/commit/a543731)), closes [#&#8203;10101](https://github.com/vitejs/vite/issues/10101) - fix(server): handle appType mpa html fallback ([#&#8203;10336](https://github.com/vitejs/vite/issues/10336)) ([65dd88b](https://github.com/vitejs/vite/commit/65dd88b)), closes [#&#8203;10336](https://github.com/vitejs/vite/issues/10336) - fix(ssr): correctly track scope ([#&#8203;10300](https://github.com/vitejs/vite/issues/10300)) ([a60529f](https://github.com/vitejs/vite/commit/a60529f)), closes [#&#8203;10300](https://github.com/vitejs/vite/issues/10300) - fix(worker): support comment in worker constructor option ([#&#8203;10226](https://github.com/vitejs/vite/issues/10226)) ([66c9058](https://github.com/vitejs/vite/commit/66c9058)), closes [#&#8203;10226](https://github.com/vitejs/vite/issues/10226) - fix(worker): support trailing comma ([#&#8203;10211](https://github.com/vitejs/vite/issues/10211)) ([0542e7c](https://github.com/vitejs/vite/commit/0542e7c)), closes [#&#8203;10211](https://github.com/vitejs/vite/issues/10211) ##### Previous Changelogs ##### [3.2.0-beta.4](https://github.com/vitejs/vite/compare/v3.2.0-beta.3....v3.2.0-beta.4) (2022-10-24) See [3.2.0-beta.4 changelog](https://github.com/vitejs/vite/blob/v3.2.0-beta.4/packages/vite/CHANGELOG.md) ##### [3.2.0-beta.3](https://github.com/vitejs/vite/compare/v3.2.0-beta.2...v3.2.0-beta.3) (2022-10-20) See [3.2.0-beta.3 changelog](https://github.com/vitejs/vite/blob/v3.2.0-beta.4/packages/vite/CHANGELOG.md) ##### [3.2.0-beta.2](https://github.com/vitejs/vite/compare/v3.2.0-beta.1...v3.2.0-beta.2) (2022-10-14) See [3.2.0-beta.2 changelog](https://github.com/vitejs/vite/blob/v3.2.0-beta.4/packages/vite/CHANGELOG.md) ##### [3.2.0-beta.1](https://github.com/vitejs/vite/compare/v3.2.0-beta.0...v3.2.0-beta.1) (2022-10-10) See [3.2.0-beta.1 changelog](https://github.com/vitejs/vite/blob/v3.2.0-beta.4/packages/vite/CHANGELOG.md) ##### [3.2.0-beta.0](https://github.com/vitejs/vite/compare/v3.1.3...v3.2.0-beta.0) (2022-10-05) See [3.2.0-beta.0 changelog](https://github.com/vitejs/vite/blob/v3.2.0-beta.4/packages/vite/CHANGELOG.md) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDAuMiIsInVwZGF0ZWRJblZlciI6IjMyLjI0MC4yIn0=-->
renovate added the
dependencies
label 2022-10-26 15:04:47 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://2580-renovate-vite-3-x--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://2580-renovate-vite-3-x--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
renovate force-pushed renovate/vite-3.x from 2ce906ab53 to 5b01721ea2 2022-10-27 01:05:21 +00:00 Compare
konrad merged commit 7ec31363c3 into main 2022-10-27 06:29:28 +00:00
konrad deleted branch renovate/vite-3.x 2022-10-27 06:29:28 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.