vike 0.4.256-commit-414bdc0 → 0.4.256-commit-3041693

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.
@@ -11,7 +11,7 @@ declare function getDeployConfigs(pageId: string, page: PageConfigPublicWithRout
11
11
  edge: boolean;
12
12
  };
13
13
  } | null;
14
- export declare function getPageContextRoute(routeIr: ReturnType<typeof fromVike>): {
14
+ export declare function getRoutePageContextJson(routeIr: ReturnType<typeof fromVike>): {
15
15
  pathname: ({
16
16
  optional: boolean;
17
17
  } & ({
@@ -1,5 +1,5 @@
1
- import pc from '@brillout/picocolors';
2
1
  export { getDeployConfigs };
2
+ import pc from '@brillout/picocolors';
3
3
  import { assert, assertUsage, assertWarning } from '../../../../utils/assert.js';
4
4
  import { isObject } from '../../../../utils/isObject.js';
5
5
  import '../../assertEnvVite.js';
@@ -20,7 +20,7 @@ function getDeployConfigs(pageId, page) {
20
20
  if (isrOrEdge && route) {
21
21
  return {
22
22
  route,
23
- // route: [...new Set([...toRou3(routeIr), ...getPageContextRoute(routeIr)])],
23
+ // route: [...new Set([...toRou3(routeIr), ...getRoutePageContextJson(routeIr)])],
24
24
  // Supported by vite-plugin-vercel@11
25
25
  vercel: {
26
26
  isr: isr ? { expiration: isr } : undefined,
@@ -53,7 +53,7 @@ function extractEdge(exports) {
53
53
  assertUsage(typeof edge === 'boolean', ' `{ edge }` must be a boolean');
54
54
  return edge;
55
55
  }
56
- export function getPageContextRoute(routeIr) {
56
+ export function getRoutePageContextJson(routeIr) {
57
57
  const lastSegment = routeIr.pathname.at(-1);
58
58
  assert(lastSegment);
59
59
  if (lastSegment.catchAll)
@@ -3,4 +3,4 @@ import '../../assertEnvVite.js';
3
3
  /**
4
4
  * If +server.js is defined, make virtual:ud:catch-all resolve to +server.js absolute path
5
5
  */
6
- export declare function pluginVikeVirtualEntry(serverFilePath: string): Plugin;
6
+ export declare function pluginServerEntryInject(serverFilePath: string): Plugin;
@@ -4,7 +4,7 @@ import '../../assertEnvVite.js';
4
4
  /**
5
5
  * If +server.js is defined, make virtual:ud:catch-all resolve to +server.js absolute path
6
6
  */
7
- export function pluginVikeVirtualEntry(serverFilePath) {
7
+ export function pluginServerEntryInject(serverFilePath) {
8
8
  return {
9
9
  name: 'vike:pluginUniversalDeploy:server',
10
10
  resolveId: {
@@ -0,0 +1,4 @@
1
+ export { pluginServerEntryAlias };
2
+ import type { Plugin } from 'vite';
3
+ import '../../assertEnvVite.js';
4
+ declare function pluginServerEntryAlias(): Plugin;
@@ -1,8 +1,9 @@
1
+ export { pluginServerEntryAlias };
1
2
  import { pluginCommon } from './common.js';
2
3
  import { escapeRegex } from '../../../../utils/escapeRegex.js';
3
4
  import { catchAllEntry } from '@universal-deploy/store';
4
5
  import '../../assertEnvVite.js';
5
- export function pluginResolveAlias() {
6
+ function pluginServerEntryAlias() {
6
7
  return {
7
8
  name: 'vike:pluginUniversalDeploy:alias',
8
9
  resolveId: {
@@ -0,0 +1,3 @@
1
+ import type { Plugin } from 'vite';
2
+ import '../../assertEnvVite.js';
3
+ export declare function pluginServerEntryInject(serverEntryId: string): Plugin;
@@ -1,8 +1,8 @@
1
1
  import { getMagicString } from '../../shared/getMagicString.js';
2
- import { serverEntryVirtualId as vikeVirtualEntry } from '@brillout/vite-plugin-server-entry/plugin';
2
+ import { serverEntryVirtualId } from '@brillout/vite-plugin-server-entry/plugin';
3
3
  import { pluginCommon } from './common.js';
4
4
  import '../../assertEnvVite.js';
5
- export function pluginVikeVirtualEntry(serverEntryId) {
5
+ export function pluginServerEntryInject(serverEntryId) {
6
6
  return {
7
7
  name: 'vike:pluginUniversalDeploy:serverEntry',
8
8
  apply: 'build',
@@ -16,7 +16,7 @@ export function pluginVikeVirtualEntry(serverEntryId) {
16
16
  handler(code, id) {
17
17
  const { magicString, getMagicStringResult } = getMagicString(code, id);
18
18
  // Inject Vike virtual server entry
19
- magicString.prepend(`import "${vikeVirtualEntry}";\n`);
19
+ magicString.prepend(`import "${serverEntryVirtualId}";\n`);
20
20
  return getMagicStringResult();
21
21
  },
22
22
  },
@@ -1,14 +1,14 @@
1
- import { toRou3 } from 'convert-route';
2
1
  export { pluginUniversalDeploy };
2
+ import { toRou3 } from 'convert-route';
3
3
  import { addEntry } from '@universal-deploy/store';
4
4
  import universalDeploy from '@universal-deploy/vite';
5
5
  import { fromVike } from 'convert-route/vike';
6
- import { pluginVikeVirtualEntry } from './pluginUniversalDeploy/pluginVikeVirtualEntry.js';
7
- import { getDeployConfigs, getPageContextRoute } from './pluginUniversalDeploy/getDeployConfigs.js';
6
+ import { pluginServerEntryInject } from './pluginUniversalDeploy/pluginServerEntryInject.js';
7
+ import { getDeployConfigs, getRoutePageContextJson } from './pluginUniversalDeploy/getDeployConfigs.js';
8
8
  import { pluginCommon } from './pluginUniversalDeploy/common.js';
9
9
  import { hasVikeServerOrVikePhoton } from './pluginUniversalDeploy/detectDeprecated.js';
10
10
  import { getServerInfo } from './pluginUniversalDeploy/getServerInfo.js';
11
- import { pluginResolveAlias } from './pluginUniversalDeploy/pluginResolveAlias.js';
11
+ import { pluginServerEntryAlias } from './pluginUniversalDeploy/pluginServerEntryAlias.js';
12
12
  import { pluginUnwrapProdOptions } from './pluginUniversalDeploy/pluginUnwrapProdOptions.js';
13
13
  import '../assertEnvVite.js';
14
14
  import { unique } from '../../../utils/unique.js';
@@ -19,7 +19,7 @@ function pluginUniversalDeploy(vikeConfig) {
19
19
  if (!serverInfo)
20
20
  return [];
21
21
  const { serverEntryVike, serverEntryId, serverFilePath } = serverInfo;
22
- const plugins = [
22
+ return [
23
23
  ...universalDeploy(),
24
24
  {
25
25
  name: 'vike:pluginUniversalDeploy:entries',
@@ -31,12 +31,12 @@ function pluginUniversalDeploy(vikeConfig) {
31
31
  if (deployConfigs !== null) {
32
32
  const { route, ...additionalConfigs } = deployConfigs;
33
33
  const routeIr = fromVike(route);
34
- const pageContextRouteIr = getPageContextRoute(routeIr);
34
+ const routeIrPageContextJson = getRoutePageContextJson(routeIr);
35
35
  addEntry({
36
36
  ...additionalConfigs,
37
37
  id: serverEntryVike,
38
38
  // Map Vike routes to rou3 format
39
- route: unique([...toRou3(routeIr), ...(pageContextRouteIr ? toRou3(pageContextRouteIr) : [])]),
39
+ route: unique([...toRou3(routeIr), ...(routeIrPageContextJson ? toRou3(routeIrPageContextJson) : [])]),
40
40
  });
41
41
  }
42
42
  }
@@ -48,11 +48,8 @@ function pluginUniversalDeploy(vikeConfig) {
48
48
  },
49
49
  ...pluginCommon,
50
50
  },
51
- pluginVikeVirtualEntry(serverFilePath ?? serverEntryId),
52
- pluginResolveAlias(),
53
- ];
54
- if (serverFilePath) {
55
- plugins.push(pluginUnwrapProdOptions(serverFilePath));
56
- }
57
- return plugins;
51
+ pluginServerEntryInject(serverFilePath ?? serverEntryId),
52
+ pluginServerEntryAlias(),
53
+ !serverFilePath ? null : pluginUnwrapProdOptions(serverFilePath),
54
+ ].filter((p) => p !== null);
58
55
  }
@@ -1,8 +1,11 @@
1
+ export type { Server };
1
2
  import type { Fetchable, ServerOptions } from '@universal-deploy/store';
2
3
  /** Server options.
3
4
  *
4
5
  * https://vike.dev/server
5
6
  */
6
- export interface Server extends Fetchable {
7
- prod?: Omit<ServerOptions, 'fetch'>;
7
+ interface Server extends Fetchable {
8
+ prod?: Omit<ServerOptions, 'fetch'> & {
9
+ static?: boolean | string;
10
+ };
8
11
  }
@@ -1 +1 @@
1
- export declare const PROJECT_VERSION: "0.4.256-commit-414bdc0";
1
+ export declare const PROJECT_VERSION: "0.4.256-commit-3041693";
@@ -1,2 +1,2 @@
1
1
  // Automatically updated by @brillout/release-me
2
- export const PROJECT_VERSION = '0.4.256-commit-414bdc0';
2
+ export const PROJECT_VERSION = '0.4.256-commit-3041693';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vike",
3
- "version": "0.4.256-commit-414bdc0",
3
+ "version": "0.4.256-commit-3041693",
4
4
  "repository": "https://github.com/vikejs/vike",
5
5
  "exports": {
6
6
  "./server": {
@@ -133,7 +133,7 @@
133
133
  "@brillout/picocolors": "^1.0.30",
134
134
  "@brillout/vite-plugin-server-entry": "0.7.18",
135
135
  "@universal-deploy/store": "^0.2.1",
136
- "@universal-deploy/vite": "^0.1.1",
136
+ "@universal-deploy/vite": "^0.1.2",
137
137
  "@universal-middleware/core": "^0.4.17",
138
138
  "@universal-middleware/node": "^0.1.0",
139
139
  "cac": "^6.0.0",
@@ -1,3 +0,0 @@
1
- import type { Plugin } from 'vite';
2
- import '../../assertEnvVite.js';
3
- export declare function pluginResolveAlias(): Plugin;
@@ -1,3 +0,0 @@
1
- import type { Plugin } from 'vite';
2
- import '../../assertEnvVite.js';
3
- export declare function pluginVikeVirtualEntry(serverEntryId: string): Plugin;