Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.3.0
->^0.5.0
^1.9.4
->^1.10.2
^3.2.21
->^3.2.31
^6.7.4
->^6.9.2
^0.29.1
->^0.32.1
^0.29.2
->^0.32.1
^0.5.11
->^0.6.9
^2.6.13
->^2.8.6
^3.2.21
->^3.2.31
Release Notes
antfu/utils
v0.5.0
Compare Source
Features
ensureSuffix
(#8) (ee2c845)[@antfu](https://togithub.com/antfu)/p
(729efea)v0.4.0
Compare Source
vitejs/vite (@vitejs/plugin-vue)
v1.10.2
Bug Fixes
v1.10.1
Bug Fixes
v1.10.0
vuejs/core
v3.2.31
Compare Source
Bug Fixes
v3.2.30
Compare Source
Features
Performance Improvements
v3.2.29
Compare Source
Bug Fixes
v3.2.28
Compare Source
v3.2.27
Compare Source
Bug Fixes
Features
ExtractPropTypes
to avoid props JSDocs being removed (#5166) (a570b38)Performance Improvements
v3.2.26
Compare Source
v3.2.25
Compare Source
Bug Fixes
Features
v3.2.24
Compare Source
Bug Fixes
Features
v3.2.23
Compare Source
Bug Fixes
null
as default prop value. (#4979) (f2d2d7b), closes #4868Features
v3.2.22
Compare Source
Bug Fixes
vueuse/vueuse
v6.9.2
Compare Source
Bug Fixes
Features
v6.9.1
Compare Source
Bug Fixes
v6.9.0
Compare Source
Features
v6.8.0
Compare Source
Bug Fixes
Features
v6.7.6
Compare Source
Bug Fixes
v6.7.5
Compare Source
Bug Fixes
microsoft/monaco-editor
v0.32.1
v0.32.0
Breaking Changes
IEncodedLineTokens
has changed to support strikethrough text.IDiffEditor.getDomNode()
has been renamed toIDiffEditor.getContainerDomNode()
.InlayHint.text
has been replaced byInlayHint.label
andInlayHintsProvider.provideInlayHints
now returns anInlayHintList
.Thank you
Contributions to
monaco-editor
:v0.31.1
v0.31.0
Compare Source
Breaking Changes
Thank you
syntax=
directive PR #2809v0.30.1
Compare Source
v0.30.0
Compare Source
hover.above
option to control the hover position.ICodeEditor.onDidChangeHiddenAreas
which is fired when folding/unfolding.renderControlCharacters
. See https://code.visualstudio.com/updates/v1\_62#\_unicode-directional-formatting-characters for an explanation.Breaking Changes
monaco.KeyCode
to align with the names given for browser codes.ITextModel.getModeId()
toITextModel.getLanguageId()
IPasteEvent.mode
toIPasteEvent.languageId
Thank you
Contributions to
monaco-editor-webpack-plugin
:Contributions to
monaco-languages
:unjs/unbuild
v0.6.9
Compare Source
v0.6.8
Compare Source
v0.6.7
Compare Source
v0.6.6
Compare Source
v0.6.5
Compare Source
v0.6.4
Compare Source
v0.6.3
Compare Source
v0.6.2
Compare Source
v0.6.1
Compare Source
v0.6.0
Compare Source
⚠ BREAKING CHANGES
Features
mkdist:
hooks (46f8b96)rollup:
hooks (43cb0da)build:before
andbuild:after
hooks (c834e56)unbuild
key frompackage.json
(ee16f56)Bug Fixes
stub: re-export
default
in dts stub (#26) (468347f)extract rollup specific global options (0dfb39f)
0.5.13 (2021-11-18)
Features
0.5.12 (2021-11-18)
Features
Bug Fixes
0.5.11 (2021-10-22)
Bug Fixes
0.5.10 (2021-10-21)
Bug Fixes
0.5.9 (2021-10-21)
Features
0.5.8 (2021-10-20)
0.5.7 (2021-10-13)
0.5.6 (2021-10-01)
Features
0.5.5 (2021-09-29)
Bug Fixes
0.5.4 (2021-09-21)
0.5.3 (2021-09-21)
Bug Fixes
0.5.2 (2021-09-21)
Bug Fixes
0.5.1 (2021-09-21)
Bug Fixes
interopDefault
for jiti stub (b1bf926)v0.5.13
Compare Source
v0.5.12
Compare Source
vitejs/vite (vite)
v2.8.6
Compare Source
Bug Fixes
v2.8.5
Compare Source
Bug Fixes
import.meta.url
(#6983) (2debb9f).ico
(#7106) (7a1a552)Features
v2.8.4
Compare Source
Bug Fixes
v2.8.3
Compare Source
Bug Fixes
v2.8.2
Compare Source
Features
import.meta.glob
andimport.meta.globEager
generic (#5073) (78e84c8)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.
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 ofit is now recommended to use
Configuring Workers Bundling
New
worker
config field adding support for Workerformat
,plugins
and,rollupOptions
. See #6351worker.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 theworker.plugins
config.