1
1
import { NetlifyPluginOptions } from '@netlify/build'
2
2
import { nodeFileTrace } from '@vercel/nft'
3
- import { cp , rm , writeFile } from 'fs/promises'
3
+ import { cp , mkdir , rm , writeFile } from 'fs/promises'
4
4
import { basename , join , relative , resolve } from 'node:path'
5
5
import {
6
6
PLUGIN_DIR ,
7
7
PLUGIN_NAME ,
8
8
PLUGIN_VERSION ,
9
+ SERVER_FUNCTIONS_DIR ,
9
10
SERVER_HANDLER_DIR ,
10
11
SERVER_HANDLER_NAME ,
11
12
} from '../constants.js'
12
- import { copyServerContent , copyServerDependencies } from '../content/server.js'
13
-
14
- /**
15
- * Create a Netlify function to run the Next.js server
16
- */
17
- export const createServerHandler = async ( {
18
- constants : { PUBLISH_DIR } ,
19
- } : Pick < NetlifyPluginOptions , 'constants' > ) => {
20
- // reset the handler directory
21
- await rm ( resolve ( SERVER_HANDLER_DIR ) , { recursive : true , force : true } )
13
+ import { copyNextDependencies , copyNextServerCode , writeTagsManifest } from '../content/server.js'
22
14
15
+ const copyHandlerDependencies = async ( ) => {
23
16
// trace the handler dependencies
24
17
const { fileList } = await nodeFileTrace (
25
18
[
@@ -52,24 +45,13 @@ export const createServerHandler = async ({
52
45
// resolve it with the plugin directory like `<abs-path>/node_modules/@netlify/next-runtime`
53
46
// if it is a node_module resolve it with the process working directory.
54
47
const relPath = relative ( path . includes ( PLUGIN_NAME ) ? PLUGIN_DIR : cwd , absPath )
55
- await cp ( absPath , resolve ( SERVER_HANDLER_DIR , relPath ) , {
56
- recursive : true ,
57
- } )
48
+ await cp ( absPath , resolve ( SERVER_HANDLER_DIR , relPath ) , { recursive : true } )
58
49
} ) ,
59
50
)
51
+ }
60
52
61
- // copy the next.js standalone build output to the handler directory
62
- await copyServerContent (
63
- resolve ( PUBLISH_DIR , 'standalone/.next' ) ,
64
- resolve ( SERVER_HANDLER_DIR , '.next' ) ,
65
- )
66
- await copyServerDependencies (
67
- resolve ( PUBLISH_DIR , 'standalone/node_modules' ) ,
68
- resolve ( SERVER_HANDLER_DIR , 'node_modules' ) ,
69
- )
70
-
71
- // create the handler metadata file
72
- await writeFile (
53
+ const writeHandlerManifest = ( ) => {
54
+ return writeFile (
73
55
resolve ( SERVER_HANDLER_DIR , `${ SERVER_HANDLER_NAME } .json` ) ,
74
56
JSON . stringify ( {
75
57
config : {
@@ -81,6 +63,7 @@ export const createServerHandler = async ({
81
63
'package.json' ,
82
64
'dist/**' ,
83
65
'.next/**' ,
66
+ '.netlify/**' ,
84
67
'node_modules/**' ,
85
68
] ,
86
69
includedFilesBasePath : resolve ( SERVER_HANDLER_DIR ) ,
@@ -89,13 +72,35 @@ export const createServerHandler = async ({
89
72
} ) ,
90
73
'utf-8' ,
91
74
)
75
+ }
92
76
93
- // configure ESM
77
+ const writePackageMetadata = async ( ) => {
94
78
await writeFile ( resolve ( SERVER_HANDLER_DIR , 'package.json' ) , JSON . stringify ( { type : 'module' } ) )
79
+ }
95
80
96
- // write the root handler file
81
+ const writeHandlerFile = async ( ) => {
97
82
await writeFile (
98
83
resolve ( SERVER_HANDLER_DIR , `${ SERVER_HANDLER_NAME } .js` ) ,
99
84
`import handler from './dist/run/handlers/server.js';export default handler` ,
100
85
)
101
86
}
87
+
88
+ /**
89
+ * Create a Netlify function to run the Next.js server
90
+ */
91
+ export const createServerHandler = async ( {
92
+ constants,
93
+ } : Pick < NetlifyPluginOptions , 'constants' > ) => {
94
+ await rm ( resolve ( SERVER_FUNCTIONS_DIR ) , { recursive : true , force : true } )
95
+ await mkdir ( resolve ( SERVER_HANDLER_DIR , '.netlify' ) , { recursive : true } )
96
+
97
+ await Promise . all ( [
98
+ copyNextServerCode ( { constants } ) ,
99
+ copyNextDependencies ( { constants } ) ,
100
+ writeTagsManifest ( { constants } ) ,
101
+ copyHandlerDependencies ( ) ,
102
+ writeHandlerManifest ( ) ,
103
+ writePackageMetadata ( ) ,
104
+ writeHandlerFile ( ) ,
105
+ ] )
106
+ }
0 commit comments