chore(deps): update dependency vite #1518

Merged
dpschen merged 2 commits from renovate/vite-2.x into main 2022-02-18 12:11:07 +00:00
Member

This PR contains the following updates:

Package Type Update Change
vite devDependencies minor 2.7.13 -> 2.8.4

Release Notes

vitejs/vite

v2.8.4

Compare Source

Bug Fixes

v2.8.3

Compare Source

Bug Fixes

v2.8.2

Compare Source

Features
Performance Improvements

v2.8.1

Compare Source

Bug Fixes

v2.8.0

Compare Source

Reduced Footprint

Vite 2.8.0 is almost 1/4 of the 2.7.0 publish size, and the install size has been reduced by 35%. See this thread about each change that reduced Vite's footprint.

Version Publish Size Install Size
2.7.0 12.7MB 25.2MB
2.8.0 4.6MB 17.4MB
Default preview port

New default port for vite preview is 4173 (avoid conflicts in MacOS that took over the 5000 port)

Workers using standard syntax

Workers are detected and bundled when using new URL('path', import.meta.url), replacing the need for the ?worker suffix and aligning Vite with standard patterns. See #​6356. Instead of

import MyWorker from './worker.js?worker'
const worker = new MyWorker()

it is now recommended to use

const worker = new Worker(
  new URL('./worker.js', import.meta.url), { type: 'module' }
)
Configuring Workers Bundling

New worker config field adding support for Worker format, plugins and, rollupOptions. See #​6351

  • worker.format: 'es' | 'iife'

    Output format for worker bundle (default: iife).
  • worker.plugins: (Plugin | Plugin[])[]

    Vite plugins that apply to worker bundle.
  • worker.rollupOptions: RollupOptions

    Rollup options to build worker bundle.

The worker plugins pipeline isn't shared with the main Vite pipeline, there may be plugins that shouldn't be applied to Workers. If a plugin must be applied to both the main build and the worker build, you need to add a plugin in the main plugins array and another one in the worker.plugins config.

import PluginX from 'vite-plugin-x'
export default {
  plugins: [ PluginX() ]
  worker: {
    format: 'es',
    plugins: [ PluginX() ]
  }
}
Raw Glob Imports

Glob imports now support the raw modifier (that works in the same way as the ?raw suffix in regular imports). Vite is going to gradually migrate to the new standard assert syntax instead of using custom URL suffixes where possible.

const examples = import.meta.globEager('./examples/*.html', { assert: { type: 'raw' }})
  • New server.headers config option allowing configuration of response headers in dev mode.
export default {
 server: {
    port: '8080',
    headers: {
      'Cache-Control': 'no-store'
    }
  },
}
Bug Fixes
Features
Beta Changelogs
2.8.0-beta.7 (2022-02-08)

See 2.8.0-beta.7 changelog

2.8.0-beta.6 (2022-02-07)

See 2.8.0-beta.6 changelog

2.8.0-beta.5 (2022-02-02)

See 2.8.0-beta.5 changelog

2.8.0-beta.4 (2022-01-31)

See 2.8.0-beta.4 changelog

2.8.0-beta.3 (2022-01-18)

See 2.8.0-beta.3 changelog

2.8.0-beta.2 (2022-01-13)

2.8.0-beta.2 changelog

2.8.0-beta.1 (2022-01-06)

See 2.8.0-beta.1 changelog

2.8.0-beta.0 (2022-01-05)

See 2.8.0-beta.0 changelog

2.7.9 (2021-12-28)

2.7.8 (2021-12-28)

Bug Fixes

2.7.7 (2021-12-26)

Bug Fixes

2.7.6 (2021-12-22)

Bug Fixes
  • remove virtual module prefix while generating manifest (#​6225) (d51259b)

2.7.5 (2021-12-21)

Bug Fixes

2.7.4 (2021-12-20)

Bug Fixes

2.7.3 (2021-12-16)

Bug Fixes

2.7.2 (2021-12-13)

Bug Fixes

2.7.1 (2021-12-07)

Bug Fixes

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

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


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [vite](https://github.com/vitejs/vite) | devDependencies | minor | [`2.7.13` -> `2.8.4`](https://renovatebot.com/diffs/npm/vite/2.7.13/2.8.4) | --- ### Release Notes <details> <summary>vitejs/vite</summary> ### [`v2.8.4`](https://github.com/vitejs/vite/blob/master/packages/vite/CHANGELOG.md#&#8203;284-httpsgithubcomvitejsvitecomparev283v284-2022-02-18) [Compare Source](https://github.com/vitejs/vite/compare/v2.8.3...v2.8.4) ##### Bug Fixes - don't replace NODE_ENV in vite:client-inject ([#&#8203;6935](https://github.com/vitejs/vite/issues/6935)) ([2b70003](https://github.com/vitejs/vite/commit/2b70003f4758114c50269a260aac3516a32b16b5)) - normalize postcss dependency messages ([#&#8203;6959](https://github.com/vitejs/vite/issues/6959)) ([3f3f473](https://github.com/vitejs/vite/commit/3f3f4737d5242547fb83f8d2522ba91cc1d96fb0)) - revert [#&#8203;6935](https://github.com/vitejs/vite/issues/6935), bypass replacing process.env.NODE_ENV in ssr ([#&#8203;6970](https://github.com/vitejs/vite/issues/6970)) ([b8218b0](https://github.com/vitejs/vite/commit/b8218b068caf0231502f0d0d0f8933330643f417)) ### [`v2.8.3`](https://github.com/vitejs/vite/blob/master/packages/vite/CHANGELOG.md#&#8203;283-httpsgithubcomvitejsvitecomparev282v283-2022-02-15) [Compare Source](https://github.com/vitejs/vite/compare/v2.8.2...v2.8.3) ##### Bug Fixes - revert update dotenv-expand [#&#8203;6703](https://github.com/vitejs/vite/issues/6703), fix [#&#8203;6858](https://github.com/vitejs/vite/issues/6858) ([#&#8203;6934](https://github.com/vitejs/vite/issues/6934)) ([a9a1ae2](https://github.com/vitejs/vite/commit/a9a1ae2db6a81a2fd31db370b58686e442047d9e)) ### [`v2.8.2`](https://github.com/vitejs/vite/blob/master/packages/vite/CHANGELOG.md#&#8203;282-httpsgithubcomvitejsvitecomparev281v282-2022-02-14) [Compare Source](https://github.com/vitejs/vite/compare/v2.8.1...v2.8.2) ##### Features - custom manifest file name ([#&#8203;6667](https://github.com/vitejs/vite/issues/6667)) ([e385346](https://github.com/vitejs/vite/commit/e385346c53b3bb54f2e1abcb7348e33d7e075fd4)) - make `import.meta.glob` and `import.meta.globEager` generic ([#&#8203;5073](https://github.com/vitejs/vite/issues/5073)) ([78e84c8](https://github.com/vitejs/vite/commit/78e84c80c0f49d6f7c8a0e10c4257a477a221280)) ##### Performance Improvements - improve isFileReadable performance ([#&#8203;6868](https://github.com/vitejs/vite/issues/6868)) ([62cbe68](https://github.com/vitejs/vite/commit/62cbe68ab713d5aba626a1e3a4da46e8c2320bf3)) - lazy import preview function ([#&#8203;6898](https://github.com/vitejs/vite/issues/6898)) ([2eabcb9](https://github.com/vitejs/vite/commit/2eabcb9a30a413ff540cbdd60a919a0d1f72fb35)) ### [`v2.8.1`](https://github.com/vitejs/vite/blob/master/packages/vite/CHANGELOG.md#&#8203;281-httpsgithubcomvitejsvitecomparev280v281-2022-02-11) [Compare Source](https://github.com/vitejs/vite/compare/v2.8.0...v2.8.1) ##### Bug Fixes - **deps:** update all non-major dependencies ([#&#8203;6782](https://github.com/vitejs/vite/issues/6782)) ([e38be3e](https://github.com/vitejs/vite/commit/e38be3e6ca7bf79319d5d7188e1d347b1d6091ef)) - **scan:** escape for virtual modules ([#&#8203;6863](https://github.com/vitejs/vite/issues/6863)) ([de20c73](https://github.com/vitejs/vite/commit/de20c73ef37b179c1791c0f96da04d29cfd48840)) ### [`v2.8.0`](https://github.com/vitejs/vite/blob/master/packages/vite/CHANGELOG.md#&#8203;280-httpsgithubcomvitejsvitecomparev280-beta7v280-2022-02-09) [Compare Source](https://github.com/vitejs/vite/compare/v2.7.13...v2.8.0) ##### Reduced Footprint [Vite 2.8.0](https://packagephobia.com/result?p=vite%402.8.0) is almost 1/4 of the [2.7.0](https://packagephobia.com/result?p=vite%402.7.0) publish size, and the install size has been reduced by 35%. See [this thread](https://twitter.com/IAmTrySound/status/1475600522572877829) about each change that reduced Vite's footprint. | Version | Publish Size | Install Size | | -------------------------------------------------------- | ------------ | ------------ | | [2.7.0](https://packagephobia.com/result?p=vite%402.7.0) | 12.7MB | 25.2MB | | [2.8.0](https://packagephobia.com/result?p=vite%402.8.0) | 4.6MB | 17.4MB | ##### Default preview port New default port for `vite preview` is 4173 (avoid conflicts in MacOS that took over the 5000 port) ##### Workers using standard syntax Workers are detected and bundled when using `new URL('path', import.meta.url)`, replacing the need for the `?worker` suffix and aligning Vite with standard patterns. See [#&#8203;6356](https://github.com/vitejs/vite/issues/6356). Instead of ```js import MyWorker from './worker.js?worker' const worker = new MyWorker() ``` it is now recommended to use ```js const worker = new Worker( new URL('./worker.js', import.meta.url), { type: 'module' } ) ``` ##### Configuring Workers Bundling New `worker` config field adding support for Worker `format`, `plugins` and, `rollupOptions`. See [#&#8203;6351](https://github.com/vitejs/vite/issues/6351) - `worker.format: 'es' | 'iife'`<br> Output format for worker bundle (default: `iife`). - `worker.plugins: (Plugin | Plugin[])[]`<br> Vite plugins that apply to worker bundle. - ` worker.rollupOptions: `[`RollupOptions`](https://rollupjs.org/guide/en/#big-list-of-options)<br> Rollup options to build worker bundle. The worker plugins pipeline isn't shared with the main Vite pipeline, there may be plugins that shouldn't be applied to Workers. If a plugin must be applied to both the main build and the worker build, you need to add a plugin in the main `plugins` array and another one in the `worker.plugins` config. ```js import PluginX from 'vite-plugin-x' export default { plugins: [ PluginX() ] worker: { format: 'es', plugins: [ PluginX() ] } } ``` ##### Raw Glob Imports Glob imports now support the `raw` modifier (that works in the same way as [the `?raw` suffix]() in regular imports). Vite is going to gradually migrate to the new standard `assert` syntax instead of using custom URL suffixes where possible. ```js const examples = import.meta.globEager('./examples/*.html', { assert: { type: 'raw' }}) ``` - New `server.headers` config option allowing configuration of response headers in dev mode. ```js export default { server: { port: '8080', headers: { 'Cache-Control': 'no-store' } }, } ``` ##### Bug Fixes - revert [#&#8203;6233](https://github.com/vitejs/vite/issues/6233), strip query when resolving entry (fix [#&#8203;6797](https://github.com/vitejs/vite/issues/6797)) ([a012644](https://github.com/vitejs/vite/commit/a0126441a556b4991ac14cf037820194ab9e17b9)) - **ssr:** skip vite resolve for windows absolute path ([#&#8203;6764](https://github.com/vitejs/vite/issues/6764)) ([489a7f1](https://github.com/vitejs/vite/commit/489a7f11e9d89932310025299c1eeb75c5cb4ce6)) - revert [#&#8203;5342](https://github.com/vitejs/vite/issues/5342), only run build-html plugin on bundler inputs ([#&#8203;6715](https://github.com/vitejs/vite/issues/6715)) ([59f8a63](https://github.com/vitejs/vite/commit/59f8a639bc6abd9e6c99bc77e155990c43e07ad9)) - **build:** NODE_ENV override by .env ([#&#8203;6303](https://github.com/vitejs/vite/issues/6303)) ([7329b24](https://github.com/vitejs/vite/commit/7329b24e03952b8fb25b025b61955e40ef777e2a)) - debug `dotenv` when specifically scoped ([#&#8203;6682](https://github.com/vitejs/vite/issues/6682)) ([c2f0021](https://github.com/vitejs/vite/commit/c2f00214e41b62196fab9108da76609aa8edbaa4)) - **dev:** prevent stripping query params from CSS in HMR ([#&#8203;6589](https://github.com/vitejs/vite/issues/6589)) ([3ab96c6](https://github.com/vitejs/vite/commit/3ab96c6171dbd3a6155e3496f901d2718edae558)) - **legacy:** fix conflict with the modern build on css emitting ([#&#8203;6584](https://github.com/vitejs/vite/issues/6584)) ([f48255e](https://github.com/vitejs/vite/commit/f48255e6e0058e973b949fb4a2372974f0480e11)), closes [#&#8203;3296](https://github.com/vitejs/vite/issues/3296) [#&#8203;3317](https://github.com/vitejs/vite/issues/3317) [/github.com/vitejs/vite/commit/6bce1081991501f3779bff1a81e5dd1e63e5d38e#diff-2cfbd4f4d8c32727cd8e1a561cffbde0b384a3ce0789340440e144f9d64c10f6R262-R263](https://github.com//github.com/vitejs/vite/commit/6bce1081991501f3779bff1a81e5dd1e63e5d38e/issues/diff-2cfbd4f4d8c32727cd8e1a561cffbde0b384a3ce0789340440e144f9d64c10f6R262-R263) - revert [#&#8203;5601](https://github.com/vitejs/vite/issues/5601) [#&#8203;6025](https://github.com/vitejs/vite/issues/6025), don't resolve rollupOptions.input ([#&#8203;6680](https://github.com/vitejs/vite/issues/6680)) ([2a9da2e](https://github.com/vitejs/vite/commit/2a9da2e3b10e3637f7ed7daa3b45cb173f40d7a3)) - update SSR externals only when SSR is enabled (fix [#&#8203;6478](https://github.com/vitejs/vite/issues/6478)) ([#&#8203;6492](https://github.com/vitejs/vite/issues/6492)) ([28d1e7e](https://github.com/vitejs/vite/commit/28d1e7eed2213f0b22936ff6900354b29e320bc9)) - avoid referencing importGlob from importMeta.d.ts ([#&#8203;6531](https://github.com/vitejs/vite/issues/6531)) ([962d285](https://github.com/vitejs/vite/commit/962d28508dce63b395e79b79f3b0e2cf0e381a71)) - **config:** merge array correctly ([#&#8203;6499](https://github.com/vitejs/vite/issues/6499)) ([b2d972e](https://github.com/vitejs/vite/commit/b2d972e53b59329695f74e01893b21ec5c136ffd)) - improve alias merging ([#&#8203;6497](https://github.com/vitejs/vite/issues/6497)) ([e57d8c6](https://github.com/vitejs/vite/commit/e57d8c63042c2701e797c797b25af65d9dab9eea)) - improve array config merging ([#&#8203;6344](https://github.com/vitejs/vite/issues/6344)) ([028cbeb](https://github.com/vitejs/vite/commit/028cbeb34adef217f274be7c4a7dd5c9f9b12b29)) - merge debug params instead of overwrite ([#&#8203;6504](https://github.com/vitejs/vite/issues/6504)) ([#&#8203;6505](https://github.com/vitejs/vite/issues/6505)) ([1ac7fb1](https://github.com/vitejs/vite/commit/1ac7fb19befe4c18a08786038dc1b63325e96835)) - only run build-html plugin on bundler inputs (fix [#&#8203;4067](https://github.com/vitejs/vite/issues/4067)) ([#&#8203;5342](https://github.com/vitejs/vite/issues/5342)) ([7541a8d](https://github.com/vitejs/vite/commit/7541a8d570d9bbf0ab0cd4264cae985dddaf3189)) - **ssr:** avoid using `tryNodeResolve` on absolute paths ([#&#8203;6488](https://github.com/vitejs/vite/issues/6488)) ([f346d89](https://github.com/vitejs/vite/commit/f346d89741b3c3a5287ce8b03637e520777d3674)) - **ssr:** fix resolution for nested ssr externals ([#&#8203;6080](https://github.com/vitejs/vite/issues/6080)) ([#&#8203;6470](https://github.com/vitejs/vite/issues/6470)) ([4a764f5](https://github.com/vitejs/vite/commit/4a764f52e4964b02c02f1ce6863ae3454daad55c)) - **ssr:** handle nameless descture in function args ([#&#8203;6489](https://github.com/vitejs/vite/issues/6489)) ([debc08d](https://github.com/vitejs/vite/commit/debc08de75434bb63f50e0e5669995de0878ce37)) - **ssr:** should correctly transfrom identifier in ssr ([#&#8203;6548](https://github.com/vitejs/vite/issues/6548)) ([15cd975](https://github.com/vitejs/vite/commit/15cd975933f6213d25d004634b3d49eb1630e360)) - **types:** add missing options parameter to importMeta ([#&#8203;6433](https://github.com/vitejs/vite/issues/6433)) ([ccf7d79](https://github.com/vitejs/vite/commit/ccf7d791497139951fde58168999d44e18f706ee)) - **types:** dynamic import in import.meta ([#&#8203;6456](https://github.com/vitejs/vite/issues/6456)) ([5d7b4c3](https://github.com/vitejs/vite/commit/5d7b4c31b8e44add7c192ae8af4b90b9378ae1fe)), closes [#&#8203;6433](https://github.com/vitejs/vite/issues/6433) - update preview port to 4173 ([#&#8203;6330](https://github.com/vitejs/vite/issues/6330)) ([870e1c0](https://github.com/vitejs/vite/commit/870e1c076272960a5f390b2cfdd3ae275b3891a5)) - use cacheDir for resolveHttpsConfig ([#&#8203;6416](https://github.com/vitejs/vite/issues/6416)) ([647168b](https://github.com/vitejs/vite/commit/647168b2b44b82b1a1cbd8e639f74ddf52a5d5cd)) - improve array config merging ([#&#8203;6344](https://github.com/vitejs/vite/issues/6344)) ([028cbeb](https://github.com/vitejs/vite/commit/028cbeb34adef217f274be7c4a7dd5c9f9b12b29)) - only run build-html plugin on bundler inputs (fix [#&#8203;4067](https://github.com/vitejs/vite/issues/4067)) ([#&#8203;5342](https://github.com/vitejs/vite/issues/5342)) ([7541a8d](https://github.com/vitejs/vite/commit/7541a8d570d9bbf0ab0cd4264cae985dddaf3189)) - **ssr:** handle nameless descture in function args ([#&#8203;6489](https://github.com/vitejs/vite/issues/6489)) ([debc08d](https://github.com/vitejs/vite/commit/debc08de75434bb63f50e0e5669995de0878ce37)) - **types:** add missing options parameter to importMeta ([#&#8203;6433](https://github.com/vitejs/vite/issues/6433)) ([ccf7d79](https://github.com/vitejs/vite/commit/ccf7d791497139951fde58168999d44e18f706ee)) - **types:** dynamic import in import.meta ([#&#8203;6456](https://github.com/vitejs/vite/issues/6456)) ([5d7b4c3](https://github.com/vitejs/vite/commit/5d7b4c31b8e44add7c192ae8af4b90b9378ae1fe)), closes [#&#8203;6433](https://github.com/vitejs/vite/issues/6433) - use cacheDir for resolveHttpsConfig ([#&#8203;6416](https://github.com/vitejs/vite/issues/6416)) ([647168b](https://github.com/vitejs/vite/commit/647168b2b44b82b1a1cbd8e639f74ddf52a5d5cd)) - **build:** fix chokidar.ignore override ([#&#8203;6317](https://github.com/vitejs/vite/issues/6317)) ([aa47549](https://github.com/vitejs/vite/commit/aa475494c61898638a592387ac907a939f1dd938)) - **build:** fix watch crash with inline module ([#&#8203;6373](https://github.com/vitejs/vite/issues/6373)) ([49d2f6d](https://github.com/vitejs/vite/commit/49d2f6dbd9445518b022f6c75ca397460a02d9d8)) - check if e.stack exists in the first place ([#&#8203;6362](https://github.com/vitejs/vite/issues/6362)) ([f144aa9](https://github.com/vitejs/vite/commit/f144aa9f1df2134dc6695db6e8eff25cac2b5263)) - correct ssr flag in resolve calls (fix [#&#8203;6213](https://github.com/vitejs/vite/issues/6213)) ([#&#8203;6216](https://github.com/vitejs/vite/issues/6216)) ([6dd7d1a](https://github.com/vitejs/vite/commit/6dd7d1a7cb99737dd48e070607d0fe9ece35adab)) - **css:** no emit assets in html style tag (fix [#&#8203;5968](https://github.com/vitejs/vite/issues/5968)) ([#&#8203;6321](https://github.com/vitejs/vite/issues/6321)) ([dc9fce1](https://github.com/vitejs/vite/commit/dc9fce144a957a5e7b3612b27bc657121a882edc)) - don't force terser on non-legacy (fix [#&#8203;6266](https://github.com/vitejs/vite/issues/6266)) ([#&#8203;6272](https://github.com/vitejs/vite/issues/6272)) ([1da104e](https://github.com/vitejs/vite/commit/1da104e8597e2965313e8cd582d032bca551e4ee)) - prevent dev server crashing on malformed URI (fix [#&#8203;6300](https://github.com/vitejs/vite/issues/6300)) ([#&#8203;6308](https://github.com/vitejs/vite/issues/6308)) ([a49d723](https://github.com/vitejs/vite/commit/a49d72358f2d028f62b0e9fcdb096a0e5ddf24c3)) - replace chalk with picocolors ([#&#8203;6277](https://github.com/vitejs/vite/issues/6277)) ([5a111ce](https://github.com/vitejs/vite/commit/5a111cedf31f579e3b8c8af5c4442d2e0cd5aa12)) - replace execa with cross-spawn ([#&#8203;6299](https://github.com/vitejs/vite/issues/6299)) ([f68ed8b](https://github.com/vitejs/vite/commit/f68ed8b4ebbec01491d069164b28a5948537f0d7)) - **ssr:** move `vite:ssr-require-hook` after user plugins ([#&#8203;6306](https://github.com/vitejs/vite/issues/6306)) ([d856c4b](https://github.com/vitejs/vite/commit/d856c4bd6798707e0cbdfc127a2e8b6c00c65dae)) - strip NULL_BYTE_PLACEHOLDER before transform ([#&#8203;6390](https://github.com/vitejs/vite/issues/6390)) ([5964949](https://github.com/vitejs/vite/commit/596494948a6e2f697232371b200c2d7a51d386bc)) - strip query when resolving entry ([#&#8203;6233](https://github.com/vitejs/vite/issues/6233)) ([000ba2e](https://github.com/vitejs/vite/commit/000ba2e00b14e6c595febfa6dcae862e2d341823)) - upgrade postcss-modules ([#&#8203;6248](https://github.com/vitejs/vite/issues/6248)) ([ac3f434](https://github.com/vitejs/vite/commit/ac3f434b8b7bc827fd76a28989f8c3ebaa999ee9)) - use `hires: true` for SSR require hook source map ([#&#8203;6310](https://github.com/vitejs/vite/issues/6310)) ([0ebeb98](https://github.com/vitejs/vite/commit/0ebeb981789e6c29889db03fc11fd9b80c63883f)) ##### Features - add lerna workspace support to `searchForWorkspaceRoot` ([#&#8203;6270](https://github.com/vitejs/vite/issues/6270)) ([0e164f8](https://github.com/vitejs/vite/commit/0e164f80ee36f99ef5277320b3b69448459ef7ba)) - add .txt file format to assets ([#&#8203;6265](https://github.com/vitejs/vite/issues/6265)) ([e87ae41](https://github.com/vitejs/vite/commit/e87ae41ae57857f387a67b5140bf7d5689a3e14b)) - allow globs in node_modules when pattern is explicit ([#&#8203;6056](https://github.com/vitejs/vite/issues/6056)) ([669d7e0](https://github.com/vitejs/vite/commit/669d7e0f4b6ea4a73d3598ab1473b58c72bf093b)) - **html:** html simple script tag support import-expression ([#&#8203;6525](https://github.com/vitejs/vite/issues/6525)) ([3546d4f](https://github.com/vitejs/vite/commit/3546d4ffcfbc011d78f9ba26e0dc689853575a1e)) - add customResolver option to resolve.alias ([#&#8203;5876](https://github.com/vitejs/vite/issues/5876)) ([6408a3a](https://github.com/vitejs/vite/commit/6408a3ab9bd97f1542982755b5044871a78b59d4)) - new Worker can bundle URL('path', import.meta.url) script (fix [#&#8203;5979](https://github.com/vitejs/vite/issues/5979)) ([#&#8203;6356](https://github.com/vitejs/vite/issues/6356)) ([a345614](https://github.com/vitejs/vite/commit/a34561490b4b866d8d4f98c697435dcb68a5c3ed)) - catch postcss error messages ([#&#8203;6293](https://github.com/vitejs/vite/issues/6293)) ([4d75b2e](https://github.com/vitejs/vite/commit/4d75b2e39d4decd1294f62333bdae4ba577bf1cb)) - **define:** prevent assignment ([#&#8203;5515](https://github.com/vitejs/vite/issues/5515)) ([6d4ee18](https://github.com/vitejs/vite/commit/6d4ee18e0c45e7c1fedd36c24b631a8f97f40c0f)) - import.meta.glob support ?raw ([#&#8203;5545](https://github.com/vitejs/vite/issues/5545)) ([5279de6](https://github.com/vitejs/vite/commit/5279de6859df61b6191a4c3bfc76da582309a5ec)) - option to disable pre-transform ([#&#8203;6309](https://github.com/vitejs/vite/issues/6309)) ([2c14525](https://github.com/vitejs/vite/commit/2c145252b7870e8173886339b69f189878533839)) - **server:** support headers configurable ([#&#8203;5580](https://github.com/vitejs/vite/issues/5580)) ([db36e81](https://github.com/vitejs/vite/commit/db36e8158e06ff6a383d03b9680aafc7f62d5033)) - **server:** trace `error.loc` back to original source ([#&#8203;5467](https://github.com/vitejs/vite/issues/5467)) ([65cd44d](https://github.com/vitejs/vite/commit/65cd44dcabbf213b24d68cf02d787e7b9e138c21)) - **ssr:** support preload dynamic css file in html head ([#&#8203;5705](https://github.com/vitejs/vite/issues/5705)) ([07fca95](https://github.com/vitejs/vite/commit/07fca955519a98e19d4e138a17e19a000eef3f46)) - support .cjs config file ([#&#8203;5602](https://github.com/vitejs/vite/issues/5602)) ([cddd986](https://github.com/vitejs/vite/commit/cddd986b2a3c61afd53d6fde88f9f28d3c3a6b00)) - **vite:** pass mode to preview command ([#&#8203;6392](https://github.com/vitejs/vite/issues/6392)) ([1ff1103](https://github.com/vitejs/vite/commit/1ff1103ade691b0a3f564609fdc4e76d5122227b)) - **worker:** support worker format, plugins and rollupOptions (fix [#&#8203;6191](https://github.com/vitejs/vite/issues/6191)) ([#&#8203;6351](https://github.com/vitejs/vite/issues/6351)) ([133fcea](https://github.com/vitejs/vite/commit/133fcea5223263b0ae08ac9a0422b55183ebd266)) ##### Beta Changelogs ##### [2.8.0-beta.7](https://github.com/vitejs/vite/compare/v2.8.0-beta.6...v2.8.0-beta.7) (2022-02-08) See [2.8.0-beta.7 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.7/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.6](https://github.com/vitejs/vite/compare/v2.8.0-beta.5...v2.8.0-beta.6) (2022-02-07) See [2.8.0-beta.6 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.6/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.5](https://github.com/vitejs/vite/compare/v2.8.0-beta.4...v2.8.0-beta.5) (2022-02-02) See [2.8.0-beta.5 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.5/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.4](https://github.com/vitejs/vite/compare/v2.8.0-beta.3...v2.8.0-beta.4) (2022-01-31) See [2.8.0-beta.4 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.4/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.3](https://github.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.3) (2022-01-18) See [2.8.0-beta.3 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.3/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.2](https://github.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.2) (2022-01-13) [2.8.0-beta.2 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.2/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.1](https://github.com/vitejs/vite/compare/v2.8.0-beta.0...v2.8.0-beta.1) (2022-01-06) See [2.8.0-beta.1 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.1/packages/vite/CHANGELOG.md) ##### [2.8.0-beta.0](https://github.com/vitejs/vite/compare/v2.7.9...v2.8.0-beta.0) (2022-01-05) See [2.8.0-beta.0 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.0/packages/vite/CHANGELOG.md) #### [2.7.9](https://github.com/vitejs/vite/compare/v2.7.8...v2.7.9) (2021-12-28) #### [2.7.8](https://github.com/vitejs/vite/compare/v2.7.7...v2.7.8) (2021-12-28) ##### Bug Fixes - **html:** show error overlay when parsing invalid file ([#&#8203;6184](https://github.com/vitejs/vite/issues/6184)) ([1f945f6](https://github.com/vitejs/vite/commit/1f945f62bf4a722c95a7b8f9c14c32a6f2be5c3f)) - seperate source and dep for dymamic import after build ([#&#8203;6251](https://github.com/vitejs/vite/issues/6251)) ([49da986](https://github.com/vitejs/vite/commit/49da98619692779df58673b9cc6004dd824a6f15)) - **ssr:** capture scope declaration correctly ([#&#8203;6281](https://github.com/vitejs/vite/issues/6281)) ([60ce7f9](https://github.com/vitejs/vite/commit/60ce7f9a1d1c730a244bc621675240d74f58af3e)) - upgrade to launch-editor with picocolors ([#&#8203;6209](https://github.com/vitejs/vite/issues/6209)) ([394539c](https://github.com/vitejs/vite/commit/394539c613b1fdee444079dae4275027705e85ae)) #### [2.7.7](https://github.com/vitejs/vite/compare/v2.7.6...v2.7.7) (2021-12-26) ##### Bug Fixes - **ssr:** nested destucture ([#&#8203;6249](https://github.com/vitejs/vite/issues/6249)) ([485e298](https://github.com/vitejs/vite/commit/485e298e72599679e97f0ed1f4315ac5da55da2c)) - **ssr:** transform class props ([#&#8203;6261](https://github.com/vitejs/vite/issues/6261)) ([2e3fe59](https://github.com/vitejs/vite/commit/2e3fe5932c962d447a4faa4b0ce996ead70c7d34)) #### [2.7.6](https://github.com/vitejs/vite/compare/v2.7.5...v2.7.6) (2021-12-22) ##### Bug Fixes - remove virtual module prefix while generating manifest ([#&#8203;6225](https://github.com/vitejs/vite/issues/6225)) ([d51259b](https://github.com/vitejs/vite/commit/d51259b73c484dea67d4c4afb6b76fbbb866631c)) #### [2.7.5](https://github.com/vitejs/vite/compare/v2.7.4...v2.7.5) (2021-12-21) ##### Bug Fixes - **asset:** import assets from encodeURI([#&#8203;6195](https://github.com/vitejs/vite/issues/6195)) ([#&#8203;6199](https://github.com/vitejs/vite/issues/6199)) ([4114f84](https://github.com/vitejs/vite/commit/4114f844f876fabfa9beaa6ec65e4002d7c36fbb)) - hmr full-reload encodeURI path ([#&#8203;6212](https://github.com/vitejs/vite/issues/6212)) ([46b862a](https://github.com/vitejs/vite/commit/46b862a6880a6e83d1e0e451376177c0e5cab0ba)) - remove top-level imports in importMeta.d.ts, fixes augmentation ([#&#8203;6214](https://github.com/vitejs/vite/issues/6214)) ([6b8d94d](https://github.com/vitejs/vite/commit/6b8d94dca2a1a8b4952e3e3fcd0aed1aedb94215)), closes [#&#8203;6194](https://github.com/vitejs/vite/issues/6194) [#&#8203;6211](https://github.com/vitejs/vite/issues/6211) [#&#8203;6206](https://github.com/vitejs/vite/issues/6206) [#&#8203;6205](https://github.com/vitejs/vite/issues/6205) - **ssr:** handle object destructure alias, close [#&#8203;6222](https://github.com/vitejs/vite/issues/6222) ([#&#8203;6224](https://github.com/vitejs/vite/issues/6224)) ([1d97ec3](https://github.com/vitejs/vite/commit/1d97ec336a6ee2915faae42d5f82110226929347)) #### [2.7.4](https://github.com/vitejs/vite/compare/v2.7.3...v2.7.4) (2021-12-20) ##### Bug Fixes - duplicate variable declaration caused by css modules ([#&#8203;5873](https://github.com/vitejs/vite/issues/5873)) ([8e16a78](https://github.com/vitejs/vite/commit/8e16a78a2d556b9480e8b2e19ec41fa522621256)) - improve error message for HTML compilation error (fix [#&#8203;5769](https://github.com/vitejs/vite/issues/5769)) ([#&#8203;5777](https://github.com/vitejs/vite/issues/5777)) ([79d1397](https://github.com/vitejs/vite/commit/79d139783868bfe2a2741f6e8cffcb72cee65351)) - **ssr:** `ssrTransform` function argument destructure ([#&#8203;6171](https://github.com/vitejs/vite/issues/6171)) ([2762a0e](https://github.com/vitejs/vite/commit/2762a0e7f0a599ced2c25c9d2baf06ec99ad8cfb)) #### [2.7.3](https://github.com/vitejs/vite/compare/v2.7.2...v2.7.3) (2021-12-16) ##### Bug Fixes - do not overwrite rollupOptions.input in dev ([#&#8203;6025](https://github.com/vitejs/vite/issues/6025)) ([6cdf13a](https://github.com/vitejs/vite/commit/6cdf13ae808a99b7aca6d278bee2ebe6e51d0846)) - Improve post-build asset update check ([#&#8203;6113](https://github.com/vitejs/vite/issues/6113)) ([611fa03](https://github.com/vitejs/vite/commit/611fa037a72a1179c27794353ffad6ed27e10d1a)) - improve warning message for malformed packages ([#&#8203;6086](https://github.com/vitejs/vite/issues/6086)) ([717cb08](https://github.com/vitejs/vite/commit/717cb08f8611fd1a15cfd614d346185ffe8a61fd)) - pending reload never timeout ([#&#8203;6120](https://github.com/vitejs/vite/issues/6120)) ([e002f4f](https://github.com/vitejs/vite/commit/e002f4f4a578ae63156e756abac0487f42b4cdcd)) - respect new port when change the config file ([#&#8203;6075](https://github.com/vitejs/vite/issues/6075)) ([3ceffcc](https://github.com/vitejs/vite/commit/3ceffcca66311f9a7d71612a596b84888c3f843b)) - **ssr:** robust regexp to check cjs content ([#&#8203;6053](https://github.com/vitejs/vite/issues/6053)) ([0373441](https://github.com/vitejs/vite/commit/03734417cde10807ab2dd0d71b08c26081aac0b7)) - terminate WebSocket connections before closing WebSocket server ([#&#8203;6115](https://github.com/vitejs/vite/issues/6115)) ([b9871bb](https://github.com/vitejs/vite/commit/b9871bbed57c5964b3393e798b0ef2526471d692)) #### [2.7.2](https://github.com/vitejs/vite/compare/v2.7.1...v2.7.2) (2021-12-13) ##### Bug Fixes - **html:** empty script ([#&#8203;6057](https://github.com/vitejs/vite/issues/6057)) ([1487223](https://github.com/vitejs/vite/commit/1487223f39b7555b1050b660d847eabf4d20249f)) - **lexGlobPattern:** edge case of glob import ([#&#8203;6022](https://github.com/vitejs/vite/issues/6022)) ([d4c5cff](https://github.com/vitejs/vite/commit/d4c5cff551ad9fb721243f8abdbf0c78f5b5a7ec)) - ws types ([#&#8203;6083](https://github.com/vitejs/vite/issues/6083)) ([1ded1a8](https://github.com/vitejs/vite/commit/1ded1a835bfb64f2c70c8c153e979b7911c9a8c1)) #### [2.7.1](https://github.com/vitejs/vite/compare/v2.7.0...v2.7.1) (2021-12-07) ##### Bug Fixes - **ssr:** `ssrTransform` handling for empty ArrayPattern ([#&#8203;5988](https://github.com/vitejs/vite/issues/5988)) ([79aa687](https://github.com/vitejs/vite/commit/79aa68744cf17553448bce5c175a25f785e4a743)) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovate added the
dependencies
label 2022-02-09 08:02:46 +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://1518-renovatevite-2.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://1518-renovatevite-2.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 changed title from chore(deps): update dependency vite to v2.8.0 to chore(deps): update dependency vite to v2.8.1 2022-02-11 13:02:40 +00:00
renovate force-pushed renovate/vite-2.x from 3cc657cb73 to 83cd972290 2022-02-11 13:02:41 +00:00 Compare
renovate changed title from chore(deps): update dependency vite to v2.8.1 to chore(deps): update dependency vite to v2.8.3 2022-02-17 08:06:46 +00:00
renovate force-pushed renovate/vite-2.x from 83cd972290 to 2ce49d3e39 2022-02-17 08:06:47 +00:00 Compare
renovate force-pushed renovate/vite-2.x from 2ce49d3e39 to 8f01579f8b 2022-02-17 10:03:56 +00:00 Compare
renovate force-pushed renovate/vite-2.x from 8f01579f8b to 8b863a654a 2022-02-17 12:04:01 +00:00 Compare
dpschen force-pushed renovate/vite-2.x from 8b863a654a to a59d0607a0 2022-02-17 20:21:06 +00:00 Compare
dpschen approved these changes 2022-02-17 20:21:20 +00:00
renovate changed title from chore(deps): update dependency vite to v2.8.3 to chore(deps): update dependency vite to v2.8.4 2022-02-18 06:03:13 +00:00
renovate force-pushed renovate/vite-2.x from a59d0607a0 to 7513c51008 2022-02-18 06:03:13 +00:00 Compare
Member

Not sure, why we can't upgrade this.

I thought that it's related to a59d0607a0/tsconfig.json (L21) but seems like that wasn't it.

Not sure, why we can't upgrade this. I thought that it's related to https://kolaente.dev/vikunja/frontend/src/commit/a59d0607a03812923c9e018430b0d3c3e889c81c/tsconfig.json#L21 but seems like that wasn't it.
dpschen force-pushed renovate/vite-2.x from 7513c51008 to 98cb14a86c 2022-02-18 12:00:38 +00:00 Compare
Member

It was the port 98cb14a86c!

It was the port https://kolaente.dev/vikunja/frontend/commit/98cb14a86c2918f1a087a6a180bf37e14edb0620!
dpschen merged commit 98cb14a86c into main 2022-02-18 12:11:07 +00:00
dpschen deleted branch renovate/vite-2.x 2022-02-18 12:11:07 +00:00
Member

... by accident I downgraded some packages. I guess will update them again in new pull requests.

... by accident I downgraded some packages. I guess will update them again in new pull requests.
Author
Member

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (2.8.4). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

### Renovate Ignore Notification As this PR has been closed unmerged, Renovate will now ignore this update (2.8.4). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the `ignoreDeps` array of your renovate config. If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.
dpschen changed title from chore(deps): update dependency vite to v2.8.4 to chore(deps): update dependency vite 2022-02-18 13:32:17 +00:00
Owner

oh okay, interesting.

oh okay, interesting.
This repo is archived. You cannot comment on pull requests.
No description provided.