vike 0.4.191-commit-e99a55e → 0.4.191-commit-d2ca712

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.
@@ -106,6 +106,9 @@ async function initGlobalContext_renderPage() {
106
106
  }
107
107
  exports.initGlobalContext_renderPage = initGlobalContext_renderPage;
108
108
  async function initGlobalContext_runPrerender() {
109
+ if (globalObject.initGlobalContext_runPrerender_alreadyCalled)
110
+ return;
111
+ globalObject.initGlobalContext_runPrerender_alreadyCalled = true;
109
112
  (0, utils_js_1.assert)(globalObject.isPrerendering);
110
113
  (0, utils_js_1.assert)(globalObject.viteConfig);
111
114
  (0, utils_js_1.assert)(globalObject.outDirRoot);
@@ -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.191-commit-e99a55e';
5
+ exports.PROJECT_VERSION = '0.4.191-commit-d2ca712';
@@ -105,6 +105,9 @@ async function initGlobalContext_renderPage() {
105
105
  await initGlobalContext(!globalObject.isDev);
106
106
  }
107
107
  async function initGlobalContext_runPrerender() {
108
+ if (globalObject.initGlobalContext_runPrerender_alreadyCalled)
109
+ return;
110
+ globalObject.initGlobalContext_runPrerender_alreadyCalled = true;
108
111
  assert(globalObject.isPrerendering);
109
112
  assert(globalObject.viteConfig);
110
113
  assert(globalObject.outDirRoot);
@@ -1 +1 @@
1
- export declare const PROJECT_VERSION: "0.4.191-commit-e99a55e";
1
+ export declare const PROJECT_VERSION: "0.4.191-commit-d2ca712";
@@ -1,2 +1,2 @@
1
1
  // Automatically updated by @brillout/release-me
2
- export const PROJECT_VERSION = '0.4.191-commit-e99a55e';
2
+ export const PROJECT_VERSION = '0.4.191-commit-d2ca712';
@@ -1,4 +1,4 @@
1
1
  export declare const projectInfo: {
2
2
  projectName: "Vike";
3
- projectVersion: "0.4.191-commit-e99a55e";
3
+ projectVersion: "0.4.191-commit-d2ca712";
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vike",
3
- "version": "0.4.191-commit-e99a55e",
3
+ "version": "0.4.191-commit-d2ca712",
4
4
  "scripts": {
5
5
  "dev": "tsc --watch",
6
6
  "build": "rimraf dist/ && pnpm run build:esm && pnpm run build:cjs",