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.
@@ -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.");
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PROJECT_VERSION = void 0;
4
4
  // Automatically updated by @brillout/release-me
5
- exports.PROJECT_VERSION = '0.4.185';
5
+ exports.PROJECT_VERSION = '0.4.186';
@@ -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.185";
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.185';
2
+ export const PROJECT_VERSION = '0.4.186';
@@ -1,4 +1,4 @@
1
1
  export declare const projectInfo: {
2
2
  projectName: "Vike";
3
- projectVersion: "0.4.185";
3
+ projectVersion: "0.4.186";
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vike",
3
- "version": "0.4.185",
3
+ "version": "0.4.186",
4
4
  "scripts": {
5
5
  "dev": "tsc --watch",
6
6
  "build": "rimraf dist/ && pnpm run build:esm && pnpm run build:cjs",