vike 0.4.185 → 0.4.186
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/dist/cjs/node/plugin/plugins/distFileNames.js +1 -1
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/distFileNames.js +1 -1
- package/dist/esm/utils/PROJECT_VERSION.d.ts +1 -1
- package/dist/esm/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/utils/projectInfo.d.ts +1 -1
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ function distFileNames() {
|
|
|
43
43
|
return 'vendor';
|
|
44
44
|
if (manualChunksOriginal) {
|
|
45
45
|
if ((0, utils_js_1.isCallable)(manualChunksOriginal)) {
|
|
46
|
-
manualChunksOriginal.call(this, id, ...args);
|
|
46
|
+
return manualChunksOriginal.call(this, id, ...args);
|
|
47
47
|
}
|
|
48
48
|
else {
|
|
49
49
|
(0, utils_js_1.assertUsage)(false, "The Vite's configuration build.rollupOptions.output.manualChunks must be a function. Reach out if you need to set it to another value.");
|
|
@@ -38,7 +38,7 @@ function distFileNames() {
|
|
|
38
38
|
return 'vendor';
|
|
39
39
|
if (manualChunksOriginal) {
|
|
40
40
|
if (isCallable(manualChunksOriginal)) {
|
|
41
|
-
manualChunksOriginal.call(this, id, ...args);
|
|
41
|
+
return manualChunksOriginal.call(this, id, ...args);
|
|
42
42
|
}
|
|
43
43
|
else {
|
|
44
44
|
assertUsage(false, "The Vite's configuration build.rollupOptions.output.manualChunks must be a function. Reach out if you need to set it to another value.");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.186";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.
|
|
2
|
+
export const PROJECT_VERSION = '0.4.186';
|