vite 2.7.5 → 2.7.6
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 +9 -0
- package/dist/node/chunks/{dep-bab9c4d6.js → dep-47e8be55.js} +2 -2
- package/dist/node/chunks/{dep-bab9c4d6.js.map → dep-47e8be55.js.map} +1 -1
- package/dist/node/chunks/{dep-05f535a1.js → dep-5fb6fc32.js} +2 -2
- package/dist/node/chunks/{dep-05f535a1.js.map → dep-5fb6fc32.js.map} +1 -1
- package/dist/node/chunks/{dep-4b67bc15.js → dep-e88755c3.js} +2 -2
- package/dist/node/chunks/{dep-4b67bc15.js.map → dep-e88755c3.js.map} +1 -1
- package/dist/node/chunks/{dep-bc5f477e.js → dep-fcec4469.js} +5 -5
- package/dist/node/chunks/{dep-bc5f477e.js.map → dep-fcec4469.js.map} +1 -1
- package/dist/node/cli.js +4 -4
- package/dist/node/index.js +1 -1
- package/package.json +1 -1
|
@@ -20397,7 +20397,7 @@ async function compileCSS(id, code, config, urlReplacer, atImportResolvers, serv
|
|
|
20397
20397
|
replacer: urlReplacer
|
|
20398
20398
|
}));
|
|
20399
20399
|
if (isModule) {
|
|
20400
|
-
postcssPlugins.unshift((await Promise.resolve().then(function () { return require('./dep-
|
|
20400
|
+
postcssPlugins.unshift((await Promise.resolve().then(function () { return require('./dep-5fb6fc32.js'); }).then(function (n) { return n.index; })).default({
|
|
20401
20401
|
...modulesOptions,
|
|
20402
20402
|
getJSON(cssFileName, _modules, outputFileName) {
|
|
20403
20403
|
modules = _modules;
|
|
@@ -21402,7 +21402,7 @@ const assetAttrsConfig = {
|
|
|
21402
21402
|
const isAsyncScriptMap = new WeakMap();
|
|
21403
21403
|
async function traverseHtml(html, filePath, visitor) {
|
|
21404
21404
|
// lazy load compiler
|
|
21405
|
-
const { parse, transform } = await Promise.resolve().then(function () { return require('./dep-
|
|
21405
|
+
const { parse, transform } = await Promise.resolve().then(function () { return require('./dep-e88755c3.js'); }).then(function (n) { return n.compilerDom_cjs; });
|
|
21406
21406
|
// @vue/compiler-core doesn't like lowercase doctypes
|
|
21407
21407
|
html = html.replace(/<!doctype\s/i, '<!DOCTYPE ');
|
|
21408
21408
|
try {
|
|
@@ -22752,7 +22752,7 @@ function manifestPlugin(config) {
|
|
|
22752
22752
|
const ext = path__default.extname(name);
|
|
22753
22753
|
name = name.slice(0, -ext.length) + `-legacy` + ext;
|
|
22754
22754
|
}
|
|
22755
|
-
return name;
|
|
22755
|
+
return name.replace(/\0/g, '');
|
|
22756
22756
|
}
|
|
22757
22757
|
else {
|
|
22758
22758
|
return `_` + path__default.basename(chunk.fileName);
|
|
@@ -49581,7 +49581,7 @@ function readFileIfExists(value) {
|
|
|
49581
49581
|
* https://github.com/webpack/webpack-dev-server/blob/master/LICENSE
|
|
49582
49582
|
*/
|
|
49583
49583
|
async function createCertificate() {
|
|
49584
|
-
const { generate } = await Promise.resolve().then(function () { return require('./dep-
|
|
49584
|
+
const { generate } = await Promise.resolve().then(function () { return require('./dep-47e8be55.js'); }).then(function (n) { return n.index; });
|
|
49585
49585
|
const pems = generate(null, {
|
|
49586
49586
|
algorithm: 'sha256',
|
|
49587
49587
|
days: 30,
|
|
@@ -82913,4 +82913,4 @@ exports.send = send$1;
|
|
|
82913
82913
|
exports.sortUserPlugins = sortUserPlugins;
|
|
82914
82914
|
exports.source = source;
|
|
82915
82915
|
exports.transformWithEsbuild = transformWithEsbuild;
|
|
82916
|
-
//# sourceMappingURL=dep-
|
|
82916
|
+
//# sourceMappingURL=dep-fcec4469.js.map
|