@netlify/plugin-nextjs 5.0.0-beta.5 → 5.0.0-beta.6
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/build/content/prerendered.js +1 -1
- package/dist/build/functions/edge.js +2 -2
- package/dist/build/functions/server.js +2 -2
- package/dist/build/plugin-context.js +1 -1
- package/dist/esm-chunks/{chunk-5OSUYKC4.js → chunk-IZ2AVCVF.js} +4 -3
- package/dist/esm-chunks/{chunk-CFYLTWDR.js → chunk-KDRFBPAR.js} +1 -1
- package/dist/esm-chunks/{chunk-HFQPUU7P.js → chunk-PCJY2SS7.js} +28 -26
- package/dist/esm-chunks/{chunk-BPBL55OP.js → chunk-UDWVXRI2.js} +18 -8
- package/dist/index.js +4 -4
- package/package.json +1 -1
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
import {
|
|
8
8
|
createEdgeHandlers
|
|
9
|
-
} from "../../esm-chunks/chunk-
|
|
9
|
+
} from "../../esm-chunks/chunk-PCJY2SS7.js";
|
|
10
10
|
import "../../esm-chunks/chunk-MFN4GH7U.js";
|
|
11
|
-
import "../../esm-chunks/chunk-
|
|
11
|
+
import "../../esm-chunks/chunk-IZ2AVCVF.js";
|
|
12
12
|
import "../../esm-chunks/chunk-TYCYFZ22.js";
|
|
13
13
|
import "../../esm-chunks/chunk-WELZ7LFO.js";
|
|
14
14
|
export {
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
import {
|
|
8
8
|
createServerHandler
|
|
9
|
-
} from "../../esm-chunks/chunk-
|
|
9
|
+
} from "../../esm-chunks/chunk-KDRFBPAR.js";
|
|
10
10
|
import "../../esm-chunks/chunk-COJ526HO.js";
|
|
11
11
|
import "../../esm-chunks/chunk-MFN4GH7U.js";
|
|
12
|
-
import "../../esm-chunks/chunk-
|
|
12
|
+
import "../../esm-chunks/chunk-IZ2AVCVF.js";
|
|
13
13
|
import "../../esm-chunks/chunk-TYCYFZ22.js";
|
|
14
14
|
import "../../esm-chunks/chunk-WELZ7LFO.js";
|
|
15
15
|
export {
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
|
|
11
11
|
// src/build/plugin-context.ts
|
|
12
12
|
import { readFileSync } from "node:fs";
|
|
13
|
-
import { mkdir, readFile, writeFile } from "node:fs/promises";
|
|
13
|
+
import { mkdir, readFile, writeFile, stat } from "node:fs/promises";
|
|
14
14
|
import { dirname, join, resolve } from "node:path";
|
|
15
15
|
import { fileURLToPath } from "node:url";
|
|
16
16
|
var MODULE_DIR = fileURLToPath(new URL(".", import.meta.url));
|
|
@@ -128,10 +128,11 @@ var PluginContext = class {
|
|
|
128
128
|
/**
|
|
129
129
|
* Write a cache entry to the blob upload directory.
|
|
130
130
|
*/
|
|
131
|
-
async writeCacheEntry(route, value) {
|
|
131
|
+
async writeCacheEntry(route, value, filePath) {
|
|
132
|
+
const { mtime } = await stat(filePath);
|
|
132
133
|
const path = join(this.blobDir, await encodeBlobKey(route));
|
|
133
134
|
const entry = JSON.stringify({
|
|
134
|
-
lastModified:
|
|
135
|
+
lastModified: mtime.getTime(),
|
|
135
136
|
value
|
|
136
137
|
});
|
|
137
138
|
await mkdir(dirname(path), { recursive: true });
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from "./chunk-MFN4GH7U.js";
|
|
10
10
|
import {
|
|
11
11
|
EDGE_HANDLER_NAME
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-IZ2AVCVF.js";
|
|
13
13
|
import {
|
|
14
14
|
__toESM
|
|
15
15
|
} from "./chunk-WELZ7LFO.js";
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
// src/build/functions/edge.ts
|
|
18
18
|
var import_fast_glob = __toESM(require_out(), 1);
|
|
19
19
|
import { cp, mkdir, readFile, rm, writeFile } from "node:fs/promises";
|
|
20
|
-
import { dirname, join } from "node:path";
|
|
20
|
+
import { dirname, join, relative } from "node:path";
|
|
21
21
|
var writeEdgeManifest = async (ctx, manifest) => {
|
|
22
22
|
await mkdir(ctx.edgeFunctionsDir, { recursive: true });
|
|
23
23
|
await writeFile(join(ctx.edgeFunctionsDir, "manifest.json"), JSON.stringify(manifest, null, 2));
|
|
@@ -60,36 +60,38 @@ var writeHandlerFile = async (ctx, { matchers, name }) => {
|
|
|
60
60
|
);
|
|
61
61
|
};
|
|
62
62
|
var copyHandlerDependencies = async (ctx, { name, files, wasm }) => {
|
|
63
|
-
const edgeRuntimePath = join(ctx.pluginDir, "edge-runtime");
|
|
64
63
|
const srcDir = join(ctx.standaloneDir, ".next");
|
|
65
|
-
const
|
|
66
|
-
const shim = await readFile(shimPath, "utf8");
|
|
67
|
-
const imports = `import './edge-runtime-webpack.js';`;
|
|
68
|
-
const exports = `export default _ENTRIES["middleware_${name}"].default;`;
|
|
69
|
-
const parts = [shim, imports];
|
|
70
|
-
if (wasm?.length) {
|
|
71
|
-
parts.push(
|
|
72
|
-
`import { decode as _base64Decode } from "../edge-runtime/vendor/deno.land/std@0.175.0/encoding/base64.ts";`
|
|
73
|
-
);
|
|
74
|
-
for (const wasmChunk of wasm ?? []) {
|
|
75
|
-
const data = await readFile(join(srcDir, wasmChunk.filePath));
|
|
76
|
-
parts.push(
|
|
77
|
-
`const ${wasmChunk.name} = _base64Decode(${JSON.stringify(
|
|
78
|
-
data.toString("base64")
|
|
79
|
-
)}).buffer`
|
|
80
|
-
);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
64
|
+
const destDir = join(ctx.edgeFunctionsDir, getHandlerName({ name }));
|
|
83
65
|
await Promise.all(
|
|
84
66
|
files.map(async (file) => {
|
|
85
|
-
const destDir = join(ctx.edgeFunctionsDir, getHandlerName({ name }));
|
|
86
67
|
if (file === `server/${name}.js`) {
|
|
68
|
+
const edgeRuntimeDir = join(ctx.pluginDir, "edge-runtime");
|
|
69
|
+
const shimPath = join(edgeRuntimeDir, "shim/index.js");
|
|
70
|
+
const shim = await readFile(shimPath, "utf8");
|
|
71
|
+
const importsDir = relative(dirname(join(srcDir, file)), join(srcDir, "server"));
|
|
72
|
+
const importsSrc = `${importsDir || "."}/edge-runtime-webpack.js`;
|
|
73
|
+
const imports = `import '${importsSrc}';`;
|
|
74
|
+
const exports = `export default _ENTRIES["middleware_${name}"].default;`;
|
|
75
|
+
const parts = [shim, imports];
|
|
76
|
+
if (wasm?.length) {
|
|
77
|
+
parts.push(
|
|
78
|
+
`import { decode as _base64Decode } from "../edge-runtime/vendor/deno.land/std@0.175.0/encoding/base64.ts";`
|
|
79
|
+
);
|
|
80
|
+
for (const wasmChunk of wasm ?? []) {
|
|
81
|
+
const data = await readFile(join(srcDir, wasmChunk.filePath));
|
|
82
|
+
parts.push(
|
|
83
|
+
`const ${wasmChunk.name} = _base64Decode(${JSON.stringify(
|
|
84
|
+
data.toString("base64")
|
|
85
|
+
)}).buffer`
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
87
89
|
const entrypoint = await readFile(join(srcDir, file), "utf8");
|
|
88
90
|
await mkdir(dirname(join(destDir, file)), { recursive: true });
|
|
89
91
|
await writeFile(join(destDir, file), [...parts, entrypoint, exports].join("\n;"));
|
|
90
|
-
|
|
92
|
+
} else {
|
|
93
|
+
await cp(join(srcDir, file), join(destDir, file));
|
|
91
94
|
}
|
|
92
|
-
await cp(join(srcDir, file), join(destDir, file));
|
|
93
95
|
})
|
|
94
96
|
);
|
|
95
97
|
};
|
|
@@ -100,8 +102,8 @@ var createEdgeHandler = async (ctx, definition) => {
|
|
|
100
102
|
var getHandlerName = ({ name }) => `${EDGE_HANDLER_NAME}-${name.replace(/\W/g, "-")}`;
|
|
101
103
|
var buildHandlerDefinition = (ctx, { name, matchers, page }) => {
|
|
102
104
|
const fun = getHandlerName({ name });
|
|
103
|
-
const funName = name
|
|
104
|
-
const cache = name
|
|
105
|
+
const funName = name.endsWith("middleware") ? "Next.js Middleware Handler" : `Next.js Edge Handler: ${page}`;
|
|
106
|
+
const cache = name.endsWith("middleware") ? void 0 : "manual";
|
|
105
107
|
const generator = `${ctx.pluginName}@${ctx.pluginVersion}`;
|
|
106
108
|
return matchers.map((matcher) => ({
|
|
107
109
|
function: fun,
|
|
@@ -44,28 +44,37 @@ var copyPrerenderedContent = async (ctx) => {
|
|
|
44
44
|
Object.entries(manifest.routes).map(async ([route, meta]) => {
|
|
45
45
|
const key = routeToFilePath(route);
|
|
46
46
|
let value;
|
|
47
|
+
let path;
|
|
47
48
|
switch (true) {
|
|
48
49
|
case (meta.dataRoute?.endsWith("/default.rsc") && !existsSync(join(ctx.publishDir, "server/app", `${key}.html`))):
|
|
49
50
|
return;
|
|
50
51
|
case meta.dataRoute?.endsWith(".json"):
|
|
51
|
-
|
|
52
|
+
path = join(ctx.publishDir, "server/pages", key);
|
|
53
|
+
value = await buildPagesCacheValue(path);
|
|
52
54
|
break;
|
|
53
55
|
case meta.dataRoute?.endsWith(".rsc"):
|
|
54
|
-
|
|
56
|
+
path = join(ctx.publishDir, "server/app", key);
|
|
57
|
+
value = await buildAppCacheValue(path);
|
|
55
58
|
break;
|
|
56
59
|
case meta.dataRoute === null:
|
|
57
|
-
|
|
60
|
+
path = join(ctx.publishDir, "server/app", key);
|
|
61
|
+
value = await buildRouteCacheValue(path);
|
|
58
62
|
break;
|
|
59
63
|
default:
|
|
60
64
|
throw new Error(`Unrecognized content: ${route}`);
|
|
61
65
|
}
|
|
62
|
-
await ctx.writeCacheEntry(
|
|
66
|
+
await ctx.writeCacheEntry(
|
|
67
|
+
key,
|
|
68
|
+
value,
|
|
69
|
+
meta.dataRoute === null ? `${path}.body` : `${path}.html`
|
|
70
|
+
);
|
|
63
71
|
})
|
|
64
72
|
);
|
|
65
73
|
if (existsSync(join(ctx.publishDir, `server/app/_not-found.html`))) {
|
|
66
74
|
const key = "/404";
|
|
67
|
-
const
|
|
68
|
-
await
|
|
75
|
+
const path = join(ctx.publishDir, "server/app/_not-found");
|
|
76
|
+
const value = await buildAppCacheValue(path);
|
|
77
|
+
await ctx.writeCacheEntry(key, value, `${path}.html`);
|
|
69
78
|
}
|
|
70
79
|
} catch (error) {
|
|
71
80
|
ctx.failBuild("Failed assembling prerendered content for upload", error);
|
|
@@ -79,8 +88,9 @@ var copyFetchContent = async (ctx) => {
|
|
|
79
88
|
});
|
|
80
89
|
await Promise.all(
|
|
81
90
|
paths.map(async (key) => {
|
|
82
|
-
const
|
|
83
|
-
await
|
|
91
|
+
const path = join(ctx.publishDir, "cache/fetch-cache", key);
|
|
92
|
+
const value = await buildFetchCacheValue(path);
|
|
93
|
+
await ctx.writeCacheEntry(key, value, path);
|
|
84
94
|
})
|
|
85
95
|
);
|
|
86
96
|
} catch (error) {
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import {
|
|
8
8
|
copyFetchContent,
|
|
9
9
|
copyPrerenderedContent
|
|
10
|
-
} from "./esm-chunks/chunk-
|
|
10
|
+
} from "./esm-chunks/chunk-UDWVXRI2.js";
|
|
11
11
|
import {
|
|
12
12
|
copyStaticAssets,
|
|
13
13
|
copyStaticContent,
|
|
@@ -16,10 +16,10 @@ import {
|
|
|
16
16
|
} from "./esm-chunks/chunk-AMJYZZKR.js";
|
|
17
17
|
import {
|
|
18
18
|
createEdgeHandlers
|
|
19
|
-
} from "./esm-chunks/chunk-
|
|
19
|
+
} from "./esm-chunks/chunk-PCJY2SS7.js";
|
|
20
20
|
import {
|
|
21
21
|
createServerHandler
|
|
22
|
-
} from "./esm-chunks/chunk-
|
|
22
|
+
} from "./esm-chunks/chunk-KDRFBPAR.js";
|
|
23
23
|
import "./esm-chunks/chunk-COJ526HO.js";
|
|
24
24
|
import "./esm-chunks/chunk-MFN4GH7U.js";
|
|
25
25
|
import {
|
|
@@ -31,7 +31,7 @@ import {
|
|
|
31
31
|
} from "./esm-chunks/chunk-EPSI5TTB.js";
|
|
32
32
|
import {
|
|
33
33
|
PluginContext
|
|
34
|
-
} from "./esm-chunks/chunk-
|
|
34
|
+
} from "./esm-chunks/chunk-IZ2AVCVF.js";
|
|
35
35
|
import "./esm-chunks/chunk-TYCYFZ22.js";
|
|
36
36
|
import "./esm-chunks/chunk-WELZ7LFO.js";
|
|
37
37
|
|