vite 2.8.0 → 2.8.1
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.
Potentially problematic release.
This version of vite might be problematic. Click here for more details.
- package/CHANGELOG.md +112 -65
- package/LICENSE.md +56 -0
- package/dist/node/chunks/{dep-c9c9d3e5.js → dep-1412e872.js} +551 -501
- package/dist/node/chunks/{dep-752d5fd3.js → dep-71f3dcc6.js} +1 -1
- package/dist/node/chunks/{dep-6a30742f.js → dep-b2698015.js} +1 -1
- package/dist/node/chunks/{dep-9e561a04.js → dep-bd3a36cc.js} +21 -16
- package/dist/node/chunks/{dep-0ebab0df.js → dep-ec2e68f4.js} +0 -0
- package/dist/node/cli.js +4 -4
- package/dist/node/index.d.ts +3 -3
- package/dist/node/index.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,58 +1,100 @@
|
|
|
1
|
-
|
|
1
|
+
## [2.8.1](https://github.com/vitejs/vite/compare/v2.8.0...v2.8.1) (2022-02-11)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
### Bug Fixes
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
* **deps:** update all non-major dependencies ([#6782](https://github.com/vitejs/vite/issues/6782)) ([e38be3e](https://github.com/vitejs/vite/commit/e38be3e6ca7bf79319d5d7188e1d347b1d6091ef))
|
|
7
|
+
* **scan:** escape for virtual modules ([#6863](https://github.com/vitejs/vite/issues/6863)) ([de20c73](https://github.com/vitejs/vite/commit/de20c73ef37b179c1791c0f96da04d29cfd48840))
|
|
6
8
|
|
|
7
9
|
|
|
8
|
-
### Bug Fixes
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
# [2.8.0](https://github.com/vitejs/vite/compare/v2.8.0-beta.7...v2.8.0) (2022-02-09)
|
|
11
12
|
|
|
13
|
+
### Reduced Footprint
|
|
12
14
|
|
|
15
|
+
[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.
|
|
13
16
|
|
|
14
|
-
|
|
17
|
+
| Version | Publish Size | Install Size |
|
|
18
|
+
| -------------------------------------------------------- | ------------ | ------------ |
|
|
19
|
+
| [2.7.0](https://packagephobia.com/result?p=vite%402.7.0) | 12.7MB | 25.2MB |
|
|
20
|
+
| [2.8.0](https://packagephobia.com/result?p=vite%402.8.0) | 4.6MB | 17.4MB |
|
|
15
21
|
|
|
22
|
+
### Default preview port
|
|
16
23
|
|
|
17
|
-
|
|
24
|
+
New default port for `vite preview` is 4173 (avoid conflicts in MacOS that took over the 5000 port)
|
|
18
25
|
|
|
19
|
-
|
|
26
|
+
### Workers using standard syntax
|
|
20
27
|
|
|
28
|
+
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](https://github.com/vitejs/vite/issues/6356). Instead of
|
|
21
29
|
|
|
30
|
+
```js
|
|
31
|
+
import MyWorker from './worker.js?worker'
|
|
32
|
+
const worker = new MyWorker()
|
|
33
|
+
```
|
|
22
34
|
|
|
23
|
-
|
|
35
|
+
it is now recommended to use
|
|
24
36
|
|
|
37
|
+
```js
|
|
38
|
+
const worker = new Worker(
|
|
39
|
+
new URL('./worker.js', import.meta.url), { type: 'module' }
|
|
40
|
+
)
|
|
41
|
+
```
|
|
25
42
|
|
|
26
|
-
###
|
|
43
|
+
### Configuring Workers Bundling
|
|
27
44
|
|
|
28
|
-
|
|
45
|
+
New `worker` config field adding support for Worker `format`, `plugins` and, `rollupOptions`. See [#6351](https://github.com/vitejs/vite/issues/6351)
|
|
46
|
+
* `worker.format: 'es' | 'iife'`<br>
|
|
47
|
+
Output format for worker bundle (default: `iife`).
|
|
48
|
+
* `worker.plugins: (Plugin | Plugin[])[]`<br>
|
|
49
|
+
Vite plugins that apply to worker bundle.
|
|
50
|
+
* `worker.rollupOptions: `[`RollupOptions`](https://rollupjs.org/guide/en/#big-list-of-options)<br>
|
|
51
|
+
Rollup options to build worker bundle.
|
|
52
|
+
|
|
53
|
+
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.
|
|
29
54
|
|
|
55
|
+
```js
|
|
56
|
+
import PluginX from 'vite-plugin-x'
|
|
57
|
+
export default {
|
|
58
|
+
plugins: [ PluginX() ]
|
|
59
|
+
worker: {
|
|
60
|
+
format: 'es',
|
|
61
|
+
plugins: [ PluginX() ]
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Raw Glob Imports
|
|
67
|
+
|
|
68
|
+
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.
|
|
30
69
|
|
|
70
|
+
```js
|
|
71
|
+
const examples = import.meta.globEager('./examples/*.html', { assert: { type: 'raw' }})
|
|
72
|
+
```
|
|
31
73
|
|
|
32
|
-
|
|
74
|
+
* New `server.headers` config option allowing configuration of response headers in dev mode.
|
|
33
75
|
|
|
76
|
+
```js
|
|
77
|
+
export default {
|
|
78
|
+
server: {
|
|
79
|
+
port: '8080',
|
|
80
|
+
headers: {
|
|
81
|
+
'Cache-Control': 'no-store'
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
}
|
|
85
|
+
```
|
|
34
86
|
|
|
35
87
|
### Bug Fixes
|
|
36
88
|
|
|
89
|
+
* revert [#6233](https://github.com/vitejs/vite/issues/6233), strip query when resolving entry (fix [#6797](https://github.com/vitejs/vite/issues/6797)) ([a012644](https://github.com/vitejs/vite/commit/a0126441a556b4991ac14cf037820194ab9e17b9))
|
|
90
|
+
* **ssr:** skip vite resolve for windows absolute path ([#6764](https://github.com/vitejs/vite/issues/6764)) ([489a7f1](https://github.com/vitejs/vite/commit/489a7f11e9d89932310025299c1eeb75c5cb4ce6))
|
|
91
|
+
* revert [#5342](https://github.com/vitejs/vite/issues/5342), only run build-html plugin on bundler inputs ([#6715](https://github.com/vitejs/vite/issues/6715)) ([59f8a63](https://github.com/vitejs/vite/commit/59f8a639bc6abd9e6c99bc77e155990c43e07ad9))
|
|
37
92
|
* **build:** NODE_ENV override by .env ([#6303](https://github.com/vitejs/vite/issues/6303)) ([7329b24](https://github.com/vitejs/vite/commit/7329b24e03952b8fb25b025b61955e40ef777e2a))
|
|
38
93
|
* debug `dotenv` when specifically scoped ([#6682](https://github.com/vitejs/vite/issues/6682)) ([c2f0021](https://github.com/vitejs/vite/commit/c2f00214e41b62196fab9108da76609aa8edbaa4))
|
|
39
94
|
* **dev:** prevent stripping query params from CSS in HMR ([#6589](https://github.com/vitejs/vite/issues/6589)) ([3ab96c6](https://github.com/vitejs/vite/commit/3ab96c6171dbd3a6155e3496f901d2718edae558))
|
|
40
95
|
* **legacy:** fix conflict with the modern build on css emitting ([#6584](https://github.com/vitejs/vite/issues/6584)) ([f48255e](https://github.com/vitejs/vite/commit/f48255e6e0058e973b949fb4a2372974f0480e11)), closes [#3296](https://github.com/vitejs/vite/issues/3296) [#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)
|
|
41
96
|
* revert [#5601](https://github.com/vitejs/vite/issues/5601) [#6025](https://github.com/vitejs/vite/issues/6025), don't resolve rollupOptions.input ([#6680](https://github.com/vitejs/vite/issues/6680)) ([2a9da2e](https://github.com/vitejs/vite/commit/2a9da2e3b10e3637f7ed7daa3b45cb173f40d7a3))
|
|
42
97
|
* update SSR externals only when SSR is enabled (fix [#6478](https://github.com/vitejs/vite/issues/6478)) ([#6492](https://github.com/vitejs/vite/issues/6492)) ([28d1e7e](https://github.com/vitejs/vite/commit/28d1e7eed2213f0b22936ff6900354b29e320bc9))
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
### Features
|
|
46
|
-
|
|
47
|
-
* add lerna workspace support to `searchForWorkspaceRoot` ([#6270](https://github.com/vitejs/vite/issues/6270)) ([0e164f8](https://github.com/vitejs/vite/commit/0e164f80ee36f99ef5277320b3b69448459ef7ba))
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
# [2.8.0-beta.3](https://github.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.3) (2022-01-18)
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
### Bug Fixes
|
|
55
|
-
|
|
56
98
|
* avoid referencing importGlob from importMeta.d.ts ([#6531](https://github.com/vitejs/vite/issues/6531)) ([962d285](https://github.com/vitejs/vite/commit/962d28508dce63b395e79b79f3b0e2cf0e381a71))
|
|
57
99
|
* **config:** merge array correctly ([#6499](https://github.com/vitejs/vite/issues/6499)) ([b2d972e](https://github.com/vitejs/vite/commit/b2d972e53b59329695f74e01893b21ec5c136ffd))
|
|
58
100
|
* improve alias merging ([#6497](https://github.com/vitejs/vite/issues/6497)) ([e57d8c6](https://github.com/vitejs/vite/commit/e57d8c63042c2701e797c797b25af65d9dab9eea))
|
|
@@ -67,51 +109,12 @@
|
|
|
67
109
|
* **types:** dynamic import in import.meta ([#6456](https://github.com/vitejs/vite/issues/6456)) ([5d7b4c3](https://github.com/vitejs/vite/commit/5d7b4c31b8e44add7c192ae8af4b90b9378ae1fe)), closes [#6433](https://github.com/vitejs/vite/issues/6433)
|
|
68
110
|
* update preview port to 4173 ([#6330](https://github.com/vitejs/vite/issues/6330)) ([870e1c0](https://github.com/vitejs/vite/commit/870e1c076272960a5f390b2cfdd3ae275b3891a5))
|
|
69
111
|
* use cacheDir for resolveHttpsConfig ([#6416](https://github.com/vitejs/vite/issues/6416)) ([647168b](https://github.com/vitejs/vite/commit/647168b2b44b82b1a1cbd8e639f74ddf52a5d5cd))
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
### Features
|
|
73
|
-
|
|
74
|
-
* add .txt file format to assets ([#6265](https://github.com/vitejs/vite/issues/6265)) ([e87ae41](https://github.com/vitejs/vite/commit/e87ae41ae57857f387a67b5140bf7d5689a3e14b))
|
|
75
|
-
* add customResolver option to resolve.alias ([#5876](https://github.com/vitejs/vite/issues/5876)) ([6408a3a](https://github.com/vitejs/vite/commit/6408a3ab9bd97f1542982755b5044871a78b59d4))
|
|
76
|
-
* allow globs in node_modules when pattern is explicit ([#6056](https://github.com/vitejs/vite/issues/6056)) ([669d7e0](https://github.com/vitejs/vite/commit/669d7e0f4b6ea4a73d3598ab1473b58c72bf093b))
|
|
77
|
-
* **html:** html simple script tag support import-expression ([#6525](https://github.com/vitejs/vite/issues/6525)) ([3546d4f](https://github.com/vitejs/vite/commit/3546d4ffcfbc011d78f9ba26e0dc689853575a1e))
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
# [2.8.0-beta.2](https://github.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.2) (2022-01-13)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
### Bug Fixes
|
|
85
|
-
|
|
86
112
|
* improve array config merging ([#6344](https://github.com/vitejs/vite/issues/6344)) ([028cbeb](https://github.com/vitejs/vite/commit/028cbeb34adef217f274be7c4a7dd5c9f9b12b29))
|
|
87
113
|
* only run build-html plugin on bundler inputs (fix [#4067](https://github.com/vitejs/vite/issues/4067)) ([#5342](https://github.com/vitejs/vite/issues/5342)) ([7541a8d](https://github.com/vitejs/vite/commit/7541a8d570d9bbf0ab0cd4264cae985dddaf3189))
|
|
88
114
|
* **ssr:** handle nameless descture in function args ([#6489](https://github.com/vitejs/vite/issues/6489)) ([debc08d](https://github.com/vitejs/vite/commit/debc08de75434bb63f50e0e5669995de0878ce37))
|
|
89
115
|
* **types:** add missing options parameter to importMeta ([#6433](https://github.com/vitejs/vite/issues/6433)) ([ccf7d79](https://github.com/vitejs/vite/commit/ccf7d791497139951fde58168999d44e18f706ee))
|
|
90
116
|
* **types:** dynamic import in import.meta ([#6456](https://github.com/vitejs/vite/issues/6456)) ([5d7b4c3](https://github.com/vitejs/vite/commit/5d7b4c31b8e44add7c192ae8af4b90b9378ae1fe)), closes [#6433](https://github.com/vitejs/vite/issues/6433)
|
|
91
117
|
* use cacheDir for resolveHttpsConfig ([#6416](https://github.com/vitejs/vite/issues/6416)) ([647168b](https://github.com/vitejs/vite/commit/647168b2b44b82b1a1cbd8e639f74ddf52a5d5cd))
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
### Features
|
|
95
|
-
|
|
96
|
-
* add customResolver option to resolve.alias ([#5876](https://github.com/vitejs/vite/issues/5876)) ([6408a3a](https://github.com/vitejs/vite/commit/6408a3ab9bd97f1542982755b5044871a78b59d4))
|
|
97
|
-
* allow globs in node_modules when pattern is explicit ([#6056](https://github.com/vitejs/vite/issues/6056)) ([669d7e0](https://github.com/vitejs/vite/commit/669d7e0f4b6ea4a73d3598ab1473b58c72bf093b))
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
# [2.8.0-beta.1](https://github.com/vitejs/vite/compare/v2.8.0-beta.0...v2.8.0-beta.1) (2022-01-06)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Features
|
|
105
|
-
|
|
106
|
-
* new Worker can bundle URL('path', import.meta.url) script (fix [#5979](https://github.com/vitejs/vite/issues/5979)) ([#6356](https://github.com/vitejs/vite/issues/6356)) ([a345614](https://github.com/vitejs/vite/commit/a34561490b4b866d8d4f98c697435dcb68a5c3ed))
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
# [2.8.0-beta.0](https://github.com/vitejs/vite/compare/v2.7.9...v2.8.0-beta.0) (2022-01-05)
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
### Bug Fixes
|
|
114
|
-
|
|
115
118
|
* **build:** fix chokidar.ignore override ([#6317](https://github.com/vitejs/vite/issues/6317)) ([aa47549](https://github.com/vitejs/vite/commit/aa475494c61898638a592387ac907a939f1dd938))
|
|
116
119
|
* **build:** fix watch crash with inline module ([#6373](https://github.com/vitejs/vite/issues/6373)) ([49d2f6d](https://github.com/vitejs/vite/commit/49d2f6dbd9445518b022f6c75ca397460a02d9d8))
|
|
117
120
|
* check if e.stack exists in the first place ([#6362](https://github.com/vitejs/vite/issues/6362)) ([f144aa9](https://github.com/vitejs/vite/commit/f144aa9f1df2134dc6695db6e8eff25cac2b5263))
|
|
@@ -124,13 +127,17 @@
|
|
|
124
127
|
* **ssr:** move `vite:ssr-require-hook` after user plugins ([#6306](https://github.com/vitejs/vite/issues/6306)) ([d856c4b](https://github.com/vitejs/vite/commit/d856c4bd6798707e0cbdfc127a2e8b6c00c65dae))
|
|
125
128
|
* strip NULL_BYTE_PLACEHOLDER before transform ([#6390](https://github.com/vitejs/vite/issues/6390)) ([5964949](https://github.com/vitejs/vite/commit/596494948a6e2f697232371b200c2d7a51d386bc))
|
|
126
129
|
* strip query when resolving entry ([#6233](https://github.com/vitejs/vite/issues/6233)) ([000ba2e](https://github.com/vitejs/vite/commit/000ba2e00b14e6c595febfa6dcae862e2d341823))
|
|
127
|
-
* this._implicitHeader is not a function ([#6313](https://github.com/vitejs/vite/issues/6313)) ([c5ba2f2](https://github.com/vitejs/vite/commit/c5ba2f24bd48b88907a1505bdf0a83d6b09f1d2b))
|
|
128
130
|
* upgrade postcss-modules ([#6248](https://github.com/vitejs/vite/issues/6248)) ([ac3f434](https://github.com/vitejs/vite/commit/ac3f434b8b7bc827fd76a28989f8c3ebaa999ee9))
|
|
129
131
|
* use `hires: true` for SSR require hook source map ([#6310](https://github.com/vitejs/vite/issues/6310)) ([0ebeb98](https://github.com/vitejs/vite/commit/0ebeb981789e6c29889db03fc11fd9b80c63883f))
|
|
130
132
|
|
|
131
|
-
|
|
132
133
|
### Features
|
|
133
134
|
|
|
135
|
+
* add lerna workspace support to `searchForWorkspaceRoot` ([#6270](https://github.com/vitejs/vite/issues/6270)) ([0e164f8](https://github.com/vitejs/vite/commit/0e164f80ee36f99ef5277320b3b69448459ef7ba))
|
|
136
|
+
* add .txt file format to assets ([#6265](https://github.com/vitejs/vite/issues/6265)) ([e87ae41](https://github.com/vitejs/vite/commit/e87ae41ae57857f387a67b5140bf7d5689a3e14b))
|
|
137
|
+
* allow globs in node_modules when pattern is explicit ([#6056](https://github.com/vitejs/vite/issues/6056)) ([669d7e0](https://github.com/vitejs/vite/commit/669d7e0f4b6ea4a73d3598ab1473b58c72bf093b))
|
|
138
|
+
* **html:** html simple script tag support import-expression ([#6525](https://github.com/vitejs/vite/issues/6525)) ([3546d4f](https://github.com/vitejs/vite/commit/3546d4ffcfbc011d78f9ba26e0dc689853575a1e))
|
|
139
|
+
* add customResolver option to resolve.alias ([#5876](https://github.com/vitejs/vite/issues/5876)) ([6408a3a](https://github.com/vitejs/vite/commit/6408a3ab9bd97f1542982755b5044871a78b59d4))
|
|
140
|
+
* new Worker can bundle URL('path', import.meta.url) script (fix [#5979](https://github.com/vitejs/vite/issues/5979)) ([#6356](https://github.com/vitejs/vite/issues/6356)) ([a345614](https://github.com/vitejs/vite/commit/a34561490b4b866d8d4f98c697435dcb68a5c3ed))
|
|
134
141
|
* catch postcss error messages ([#6293](https://github.com/vitejs/vite/issues/6293)) ([4d75b2e](https://github.com/vitejs/vite/commit/4d75b2e39d4decd1294f62333bdae4ba577bf1cb))
|
|
135
142
|
* **define:** prevent assignment ([#5515](https://github.com/vitejs/vite/issues/5515)) ([6d4ee18](https://github.com/vitejs/vite/commit/6d4ee18e0c45e7c1fedd36c24b631a8f97f40c0f))
|
|
136
143
|
* import.meta.glob support ?raw ([#5545](https://github.com/vitejs/vite/issues/5545)) ([5279de6](https://github.com/vitejs/vite/commit/5279de6859df61b6191a4c3bfc76da582309a5ec))
|
|
@@ -142,6 +149,46 @@
|
|
|
142
149
|
* **vite:** pass mode to preview command ([#6392](https://github.com/vitejs/vite/issues/6392)) ([1ff1103](https://github.com/vitejs/vite/commit/1ff1103ade691b0a3f564609fdc4e76d5122227b))
|
|
143
150
|
* **worker:** support worker format, plugins and rollupOptions (fix [#6191](https://github.com/vitejs/vite/issues/6191)) ([#6351](https://github.com/vitejs/vite/issues/6351)) ([133fcea](https://github.com/vitejs/vite/commit/133fcea5223263b0ae08ac9a0422b55183ebd266))
|
|
144
151
|
|
|
152
|
+
### Beta Changelogs
|
|
153
|
+
|
|
154
|
+
#### [2.8.0-beta.7](https://github.com/vitejs/vite/compare/v2.8.0-beta.6...v2.8.0-beta.7) (2022-02-08)
|
|
155
|
+
|
|
156
|
+
See [2.8.0-beta.7 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.7/packages/vite/CHANGELOG.md)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
#### [2.8.0-beta.6](https://github.com/vitejs/vite/compare/v2.8.0-beta.5...v2.8.0-beta.6) (2022-02-07)
|
|
160
|
+
|
|
161
|
+
See [2.8.0-beta.6 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.6/packages/vite/CHANGELOG.md)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
#### [2.8.0-beta.5](https://github.com/vitejs/vite/compare/v2.8.0-beta.4...v2.8.0-beta.5) (2022-02-02)
|
|
165
|
+
|
|
166
|
+
See [2.8.0-beta.5 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.5/packages/vite/CHANGELOG.md)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
#### [2.8.0-beta.4](https://github.com/vitejs/vite/compare/v2.8.0-beta.3...v2.8.0-beta.4) (2022-01-31)
|
|
170
|
+
|
|
171
|
+
See [2.8.0-beta.4 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.4/packages/vite/CHANGELOG.md)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
#### [2.8.0-beta.3](https://github.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.3) (2022-01-18)
|
|
175
|
+
|
|
176
|
+
See [2.8.0-beta.3 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.3/packages/vite/CHANGELOG.md)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
#### [2.8.0-beta.2](https://github.com/vitejs/vite/compare/v2.8.0-beta.1...v2.8.0-beta.2) (2022-01-13)
|
|
180
|
+
|
|
181
|
+
[2.8.0-beta.2 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.2/packages/vite/CHANGELOG.md)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
#### [2.8.0-beta.1](https://github.com/vitejs/vite/compare/v2.8.0-beta.0...v2.8.0-beta.1) (2022-01-06)
|
|
185
|
+
|
|
186
|
+
See [2.8.0-beta.1 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.1/packages/vite/CHANGELOG.md)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
#### [2.8.0-beta.0](https://github.com/vitejs/vite/compare/v2.7.9...v2.8.0-beta.0) (2022-01-05)
|
|
190
|
+
|
|
191
|
+
See [2.8.0-beta.0 changelog](https://github.com/vitejs/vite/blob/v2.8.0-beta.0/packages/vite/CHANGELOG.md)
|
|
145
192
|
|
|
146
193
|
|
|
147
194
|
## [2.7.9](https://github.com/vitejs/vite/compare/v2.7.8...v2.7.9) (2021-12-28)
|
package/LICENSE.md
CHANGED
|
@@ -264,6 +264,62 @@ Repository: https://github.com/jridgewell/resolve-uri
|
|
|
264
264
|
|
|
265
265
|
---------------------------------------
|
|
266
266
|
|
|
267
|
+
## @jridgewell/sourcemap-codec
|
|
268
|
+
License: MIT
|
|
269
|
+
By: Rich Harris
|
|
270
|
+
Repository: git+https://github.com/jridgewell/sourcemap-codec.git
|
|
271
|
+
|
|
272
|
+
> The MIT License
|
|
273
|
+
>
|
|
274
|
+
> Copyright (c) 2015 Rich Harris
|
|
275
|
+
>
|
|
276
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
277
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
278
|
+
> in the Software without restriction, including without limitation the rights
|
|
279
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
280
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
281
|
+
> furnished to do so, subject to the following conditions:
|
|
282
|
+
>
|
|
283
|
+
> The above copyright notice and this permission notice shall be included in
|
|
284
|
+
> all copies or substantial portions of the Software.
|
|
285
|
+
>
|
|
286
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
287
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
288
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
289
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
290
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
291
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
292
|
+
> THE SOFTWARE.
|
|
293
|
+
|
|
294
|
+
---------------------------------------
|
|
295
|
+
|
|
296
|
+
## @jridgewell/trace-mapping
|
|
297
|
+
License: MIT
|
|
298
|
+
By: Justin Ridgewell
|
|
299
|
+
Repository: git+https://github.com/jridgewell/trace-mapping.git
|
|
300
|
+
|
|
301
|
+
> Copyright 2022 Justin Ridgewell <justin@ridgewell.name>
|
|
302
|
+
>
|
|
303
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
304
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
305
|
+
> in the Software without restriction, including without limitation the rights
|
|
306
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
307
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
308
|
+
> furnished to do so, subject to the following conditions:
|
|
309
|
+
>
|
|
310
|
+
> The above copyright notice and this permission notice shall be included in
|
|
311
|
+
> all copies or substantial portions of the Software.
|
|
312
|
+
>
|
|
313
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
314
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
315
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
316
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
317
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
318
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
319
|
+
> SOFTWARE.
|
|
320
|
+
|
|
321
|
+
---------------------------------------
|
|
322
|
+
|
|
267
323
|
## @nodelib/fs.scandir
|
|
268
324
|
License: MIT
|
|
269
325
|
Repository: https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir
|