vite 8.1.4 → 8.2.0-beta.0
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/LICENSE.md +35 -0
- package/dist/client/bundledDevClient.mjs +1455 -0
- package/dist/client/client.mjs +52 -83
- package/dist/node/chunks/build.js +64 -27
- package/dist/node/chunks/moduleRunnerTransport.d.ts +25 -26
- package/dist/node/chunks/node.js +1145 -337
- package/dist/node/chunks/postcss-import.js +10 -10
- package/dist/node/index.d.ts +1334 -1294
- package/dist/node/module-runner.d.ts +76 -77
- package/dist/node/module-runner.js +18 -14
- package/package.json +14 -14
- package/types/customEvent.d.ts +1 -1
- package/types/hmrPayload.d.ts +20 -6
package/LICENSE.md
CHANGED
|
@@ -1219,6 +1219,13 @@ Repository: https://github.com/micromatch/is-glob
|
|
|
1219
1219
|
|
|
1220
1220
|
---------------------------------------
|
|
1221
1221
|
|
|
1222
|
+
## is-reference
|
|
1223
|
+
License: MIT
|
|
1224
|
+
By: Rich Harris
|
|
1225
|
+
Repository: https://github.com/Rich-Harris/is-reference
|
|
1226
|
+
|
|
1227
|
+
---------------------------------------
|
|
1228
|
+
|
|
1222
1229
|
## isexe, which
|
|
1223
1230
|
License: ISC
|
|
1224
1231
|
By: Isaac Z. Schlueter
|
|
@@ -2285,3 +2292,31 @@ Repository: https://github.com/websockets/ws
|
|
|
2285
2292
|
> COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
2286
2293
|
> IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
2287
2294
|
> CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
2295
|
+
|
|
2296
|
+
---------------------------------------
|
|
2297
|
+
|
|
2298
|
+
## zimmerframe
|
|
2299
|
+
License: MIT
|
|
2300
|
+
Repository: https://github.com/sveltejs/zimmerframe
|
|
2301
|
+
|
|
2302
|
+
> MIT License
|
|
2303
|
+
>
|
|
2304
|
+
> Copyright (c) 2023 [these people](https://github.com/Rich-Harris/zimmerframe/graphs/contributors)
|
|
2305
|
+
>
|
|
2306
|
+
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
2307
|
+
> of this software and associated documentation files (the "Software"), to deal
|
|
2308
|
+
> in the Software without restriction, including without limitation the rights
|
|
2309
|
+
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
2310
|
+
> copies of the Software, and to permit persons to whom the Software is
|
|
2311
|
+
> furnished to do so, subject to the following conditions:
|
|
2312
|
+
>
|
|
2313
|
+
> The above copyright notice and this permission notice shall be included in all
|
|
2314
|
+
> copies or substantial portions of the Software.
|
|
2315
|
+
>
|
|
2316
|
+
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
2317
|
+
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
2318
|
+
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
2319
|
+
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
2320
|
+
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
2321
|
+
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
2322
|
+
> SOFTWARE.
|