vite 2.6.13 → 2.7.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.
Potentially problematic release.
This version of vite might be problematic. Click here for more details.
- package/CHANGELOG.md +18 -0
- package/dist/node/chunks/{dep-724b1c48.js → dep-0619a44b.js} +2 -2
- package/dist/node/chunks/{dep-724b1c48.js.map → dep-0619a44b.js.map} +1 -1
- package/dist/node/chunks/{dep-93e144c8.js → dep-e51889c1.js} +2 -2
- package/dist/node/chunks/{dep-93e144c8.js.map → dep-e51889c1.js.map} +1 -1
- package/dist/node/chunks/{dep-1a7759b6.js → dep-e5df0dd2.js} +2 -2
- package/dist/node/chunks/{dep-1a7759b6.js.map → dep-e5df0dd2.js.map} +1 -1
- package/dist/node/chunks/{dep-85dbaaa7.js → dep-f2dce443.js} +227 -113
- package/dist/node/chunks/dep-f2dce443.js.map +1 -0
- package/dist/node/cli.js +27 -25
- package/dist/node/cli.js.map +1 -1
- package/dist/node/index.d.ts +62 -26
- package/dist/node/index.js +15 -15
- package/package.json +1 -1
- package/types/shims.d.ts +5 -1
- package/dist/node/chunks/dep-85dbaaa7.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# [2.7.0-beta.0](https://github.com/vitejs/vite/compare/v2.6.13...v2.7.0-beta.0) (2021-10-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add `import` support to `ssrModuleLoader` ([#5197](https://github.com/vitejs/vite/issues/5197)) ([baba1f9](https://github.com/vitejs/vite/commit/baba1f9e8fb22254b3858bcc1ffe89b334736068))
|
|
7
|
+
* consider # as a valid dir symbol (fix [#4701](https://github.com/vitejs/vite/issues/4701)) ([#4703](https://github.com/vitejs/vite/issues/4703)) ([52689c8](https://github.com/vitejs/vite/commit/52689c88497438a1df5d1b5208e81c74ede7a35f))
|
|
8
|
+
* do not overwrite pendingReload promise (fix [#5448](https://github.com/vitejs/vite/issues/5448)) ([#5452](https://github.com/vitejs/vite/issues/5452)) ([cc9c2da](https://github.com/vitejs/vite/commit/cc9c2da7b816a41987000dd662f04dbc2033a600))
|
|
9
|
+
* exclude dependency of optimized dependency (fix: 5410) ([#5411](https://github.com/vitejs/vite/issues/5411)) ([ebd4027](https://github.com/vitejs/vite/commit/ebd4027292cc5f0b47d17eb53176924dfab10915))
|
|
10
|
+
* missing tags inject fallback ([#5339](https://github.com/vitejs/vite/issues/5339)) ([3c44ac8](https://github.com/vitejs/vite/commit/3c44ac80bbe652c4f0a9cd0561322d223f966435))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* `server.fs.deny` support ([#5378](https://github.com/vitejs/vite/issues/5378)) ([1a15460](https://github.com/vitejs/vite/commit/1a15460bf35325ab9a7c22aacdb1e0afd1703c52))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [2.6.13](https://github.com/vitejs/vite/compare/v2.6.12...v2.6.13) (2021-10-27)
|
|
2
20
|
|
|
3
21
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var build = require('./dep-
|
|
3
|
+
var build = require('./dep-f2dce443.js');
|
|
4
4
|
var require$$1 = require('crypto');
|
|
5
5
|
|
|
6
6
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e["default"] : e; }
|
|
@@ -29179,4 +29179,4 @@ var index = /*#__PURE__*/_mergeNamespaces({
|
|
|
29179
29179
|
}, [selfsigned]);
|
|
29180
29180
|
|
|
29181
29181
|
exports.index = index;
|
|
29182
|
-
//# sourceMappingURL=dep-
|
|
29182
|
+
//# sourceMappingURL=dep-0619a44b.js.map
|