1
1
import { Plugin , build } from "esbuild" ;
2
2
import { cp , readFile , writeFile } from "node:fs/promises" ;
3
+ import { dirname , join } from "node:path" ;
3
4
import { existsSync , readFileSync } from "node:fs" ;
4
5
import { Config } from "../config" ;
5
6
import { copyPackageCliFiles } from "./patches/investigated/copy-package-cli-files" ;
@@ -14,11 +15,10 @@ import { patchFindDir } from "./patches/to-investigate/patch-find-dir";
14
15
import { patchReadFile } from "./patches/to-investigate/patch-read-file" ;
15
16
import { patchRequire } from "./patches/investigated/patch-require" ;
16
17
import { patchWranglerDeps } from "./patches/to-investigate/wrangler-deps" ;
17
- import path from "node:path" ;
18
18
import { updateWebpackChunksFile } from "./patches/investigated/update-webpack-chunks-file" ;
19
19
20
20
/** The dist directory of the Cloudflare adapter package */
21
- const packageDistDir = path . join ( path . dirname ( fileURLToPath ( import . meta. url ) ) , ".." ) ;
21
+ const packageDistDir = join ( dirname ( fileURLToPath ( import . meta. url ) ) , ".." ) ;
22
22
23
23
/**
24
24
* Using the Next.js build output in the `.next` directory builds a workerd compatible output
@@ -30,18 +30,14 @@ export async function buildWorker(config: Config): Promise<void> {
30
30
console . log ( `\x1b[35m⚙️ Copying files...\n\x1b[0m` ) ;
31
31
32
32
// Copy over client-side generated files
33
- await cp (
34
- path . join ( config . paths . dotNext , "static" ) ,
35
- path . join ( config . paths . outputDir , "assets" , "_next" , "static" ) ,
36
- {
37
- recursive : true ,
38
- }
39
- ) ;
33
+ await cp ( join ( config . paths . dotNext , "static" ) , join ( config . paths . outputDir , "assets" , "_next" , "static" ) , {
34
+ recursive : true ,
35
+ } ) ;
40
36
41
37
// Copy over any static files (e.g. images) from the source project
42
- const publicDir = path . join ( config . paths . sourceDir , "public" ) ;
38
+ const publicDir = join ( config . paths . sourceDir , "public" ) ;
43
39
if ( existsSync ( publicDir ) ) {
44
- await cp ( publicDir , path . join ( config . paths . outputDir , "assets" ) , {
40
+ await cp ( publicDir , join ( config . paths . outputDir , "assets" ) , {
45
41
recursive : true ,
46
42
} ) ;
47
43
}
@@ -51,11 +47,11 @@ export async function buildWorker(config: Config): Promise<void> {
51
47
52
48
copyPackageCliFiles ( packageDistDir , config ) ;
53
49
54
- const workerEntrypoint = path . join ( config . paths . internalTemplates , "worker.ts" ) ;
55
- const workerOutputFile = path . join ( config . paths . outputDir , "index.mjs" ) ;
50
+ const workerEntrypoint = join ( config . paths . internalTemplates , "worker.ts" ) ;
51
+ const workerOutputFile = join ( config . paths . outputDir , "index.mjs" ) ;
56
52
57
53
const nextConfigStr =
58
- readFileSync ( path . join ( config . paths . standaloneApp , "/server.js" ) , "utf8" ) ?. match (
54
+ readFileSync ( join ( config . paths . standaloneApp , "/server.js" ) , "utf8" ) ?. match (
59
55
/ c o n s t n e x t C o n f i g = ( { .+ ?} ) \n /
60
56
) ?. [ 1 ] ?? { } ;
61
57
@@ -76,15 +72,15 @@ export async function buildWorker(config: Config): Promise<void> {
76
72
// Note: we apply an empty shim to next/dist/compiled/ws because it generates two `eval`s:
77
73
// eval("require")("bufferutil");
78
74
// eval("require")("utf-8-validate");
79
- "next/dist/compiled/ws" : path . join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
75
+ "next/dist/compiled/ws" : join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
80
76
// Note: we apply an empty shim to next/dist/compiled/edge-runtime since (amongst others) it generated the following `eval`:
81
77
// eval(getModuleCode)(module, module.exports, throwingRequire, params.context, ...Object.values(params.scopedContext));
82
78
// which comes from https://github.com/vercel/edge-runtime/blob/6e96b55f/packages/primitives/src/primitives/load.js#L57-L63
83
79
// QUESTION: Why did I encountered this but mhart didn't?
84
- "next/dist/compiled/edge-runtime" : path . join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
80
+ "next/dist/compiled/edge-runtime" : join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
85
81
// `@next/env` is a library Next.js uses for loading dotenv files, for obvious reasons we need to stub it here
86
82
// source: https://github.com/vercel/next.js/tree/0ac10d79720/packages/next-env
87
- "@next/env" : path . join ( config . paths . internalTemplates , "shims" , "env.ts" ) ,
83
+ "@next/env" : join ( config . paths . internalTemplates , "shims" , "env.ts" ) ,
88
84
} ,
89
85
define : {
90
86
// config file used by Next.js, see: https://github.com/vercel/next.js/blob/68a7128/packages/next/src/build/utils.ts#L2137-L2139
@@ -178,10 +174,10 @@ function createFixRequiresESBuildPlugin(config: Config): Plugin {
178
174
setup ( build ) {
179
175
// Note: we (empty) shim require-hook modules as they generate problematic code that uses requires
180
176
build . onResolve ( { filter : / ^ \. \/ r e q u i r e - h o o k $ / } , ( ) => ( {
181
- path : path . join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
177
+ path : join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
182
178
} ) ) ;
183
179
build . onResolve ( { filter : / \. \/ l i b \/ n o d e - f s - m e t h o d s $ / } , ( ) => ( {
184
- path : path . join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
180
+ path : join ( config . paths . internalTemplates , "shims" , "empty.ts" ) ,
185
181
} ) ) ;
186
182
} ,
187
183
} ;
0 commit comments