vike 0.4.153-commit-159c659 → 0.4.153-commit-01ab602

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.
@@ -51,7 +51,7 @@ function getEntryCode(config, configVike) {
51
51
  ' setImportBuildGetters({',
52
52
  ` pageFiles: () => pageFiles,`,
53
53
  // TODO: rename clientManifest -> assetManifest
54
- ` clientManifest: () => { return ${ASSETS_MAP} },`,
54
+ ` clientManifest: () => (${ASSETS_MAP}),`,
55
55
  // TODO: rename pluginManifest -> vikeManifest
56
56
  ` pluginManifest: () => (${JSON.stringify(vikeManifest, null, 2)}),`,
57
57
  ' });',
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PROJECT_VERSION = exports.projectInfo = void 0;
4
4
  const assertSingleInstance_js_1 = require("./assertSingleInstance.js");
5
- const PROJECT_VERSION = '0.4.153-commit-159c659';
5
+ const PROJECT_VERSION = '0.4.153-commit-01ab602';
6
6
  exports.PROJECT_VERSION = PROJECT_VERSION;
7
7
  const projectInfo = {
8
8
  projectName: 'Vike',
@@ -45,7 +45,7 @@ function getEntryCode(config, configVike) {
45
45
  ' setImportBuildGetters({',
46
46
  ` pageFiles: () => pageFiles,`,
47
47
  // TODO: rename clientManifest -> assetManifest
48
- ` clientManifest: () => { return ${ASSETS_MAP} },`,
48
+ ` clientManifest: () => (${ASSETS_MAP}),`,
49
49
  // TODO: rename pluginManifest -> vikeManifest
50
50
  ` pluginManifest: () => (${JSON.stringify(vikeManifest, null, 2)}),`,
51
51
  ' });',
@@ -1,13 +1,13 @@
1
1
  export { projectInfo };
2
2
  export type { ProjectTag };
3
3
  export { PROJECT_VERSION };
4
- declare const PROJECT_VERSION: "0.4.153-commit-159c659";
4
+ declare const PROJECT_VERSION: "0.4.153-commit-01ab602";
5
5
  type PackageName = typeof projectInfo.npmPackageName;
6
6
  type ProjectVersion = typeof projectInfo.projectVersion;
7
7
  type ProjectTag = `[${PackageName}]` | `[${PackageName}@${ProjectVersion}]`;
8
8
  declare const projectInfo: {
9
9
  projectName: "Vike";
10
- projectVersion: "0.4.153-commit-159c659";
10
+ projectVersion: "0.4.153-commit-01ab602";
11
11
  npmPackageName: "vike";
12
12
  githubRepository: "https://github.com/vikejs/vike";
13
13
  };
@@ -1,7 +1,7 @@
1
1
  export { projectInfo };
2
2
  export { PROJECT_VERSION };
3
3
  import { onProjectInfo } from './assertSingleInstance.js';
4
- const PROJECT_VERSION = '0.4.153-commit-159c659';
4
+ const PROJECT_VERSION = '0.4.153-commit-01ab602';
5
5
  const projectInfo = {
6
6
  projectName: 'Vike',
7
7
  projectVersion: PROJECT_VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vike",
3
- "version": "0.4.153-commit-159c659",
3
+ "version": "0.4.153-commit-01ab602",
4
4
  "scripts": {
5
5
  "dev": "tsc --watch",
6
6
  "build": "rimraf dist/ && pnpm run build:esm && pnpm run build:cjs",