vite 2.6.12 → 2.6.13
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-822b9d02.js → dep-1a7759b6.js} +2 -2
- package/dist/node/chunks/{dep-822b9d02.js.map → dep-1a7759b6.js.map} +1 -1
- package/dist/node/chunks/{dep-14140c42.js → dep-724b1c48.js} +2 -2
- package/dist/node/chunks/{dep-14140c42.js.map → dep-724b1c48.js.map} +1 -1
- package/dist/node/chunks/{dep-81ddae5a.js → dep-85dbaaa7.js} +5 -5
- package/dist/node/chunks/dep-85dbaaa7.js.map +1 -0
- package/dist/node/chunks/{dep-b0d06b66.js → dep-93e144c8.js} +2 -2
- package/dist/node/chunks/{dep-b0d06b66.js.map → dep-93e144c8.js.map} +1 -1
- package/dist/node/cli.js +4 -4
- package/dist/node/index.js +1 -1
- package/package.json +1 -1
- package/dist/node/chunks/dep-81ddae5a.js.map +0 -1
package/dist/node/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var require$$0 = require('events');
|
|
4
|
-
var build = require('./chunks/dep-
|
|
4
|
+
var build = require('./chunks/dep-85dbaaa7.js');
|
|
5
5
|
var perf_hooks = require('perf_hooks');
|
|
6
6
|
require('fs');
|
|
7
7
|
require('path');
|
|
@@ -682,7 +682,7 @@ cli
|
|
|
682
682
|
.action(async (root, options) => {
|
|
683
683
|
// output structure is preserved even after bundling so require()
|
|
684
684
|
// is ok here
|
|
685
|
-
const { createServer } = await Promise.resolve().then(function () { return require('./chunks/dep-
|
|
685
|
+
const { createServer } = await Promise.resolve().then(function () { return require('./chunks/dep-85dbaaa7.js'); }).then(function (n) { return n.index$1; });
|
|
686
686
|
try {
|
|
687
687
|
const server = await createServer({
|
|
688
688
|
root,
|
|
@@ -731,7 +731,7 @@ cli
|
|
|
731
731
|
.option('--emptyOutDir', `[boolean] force empty outDir when it's outside of root`)
|
|
732
732
|
.option('-w, --watch', `[boolean] rebuilds when modules have changed on disk`)
|
|
733
733
|
.action(async (root, options) => {
|
|
734
|
-
const { build: build$1 } = await Promise.resolve().then(function () { return require('./chunks/dep-
|
|
734
|
+
const { build: build$1 } = await Promise.resolve().then(function () { return require('./chunks/dep-85dbaaa7.js'); }).then(function (n) { return n.build$1; });
|
|
735
735
|
const buildOptions = cleanOptions(options);
|
|
736
736
|
try {
|
|
737
737
|
await build$1({
|
|
@@ -754,7 +754,7 @@ cli
|
|
|
754
754
|
.command('optimize [root]')
|
|
755
755
|
.option('--force', `[boolean] force the optimizer to ignore the cache and re-bundle`)
|
|
756
756
|
.action(async (root, options) => {
|
|
757
|
-
const { optimizeDeps } = await Promise.resolve().then(function () { return require('./chunks/dep-
|
|
757
|
+
const { optimizeDeps } = await Promise.resolve().then(function () { return require('./chunks/dep-85dbaaa7.js'); }).then(function (n) { return n.index; });
|
|
758
758
|
try {
|
|
759
759
|
const config = await build.resolveConfig({
|
|
760
760
|
root,
|
package/dist/node/index.js
CHANGED