1
1
import { execaCommand } from 'execa'
2
2
import fg from 'fast-glob'
3
3
import { exec } from 'node:child_process'
4
+ import { existsSync } from 'node:fs'
4
5
import { copyFile , mkdir , mkdtemp , readFile , rm , writeFile } from 'node:fs/promises'
5
6
import { tmpdir } from 'node:os'
6
7
import { dirname , join } from 'node:path'
@@ -32,6 +33,7 @@ export const createE2EFixture = async (
32
33
packageManger ?: PackageManager
33
34
packagePath ?: string
34
35
buildCommand ?: string
36
+ publishDirectory ?: string
35
37
} = { } ,
36
38
) => {
37
39
const cwd = await mkdtemp ( join ( tmpdir ( ) , 'netlify-next-runtime-' ) )
@@ -55,7 +57,7 @@ export const createE2EFixture = async (
55
57
}
56
58
try {
57
59
const [ packageName ] = await Promise . all ( [
58
- buildAndPackRuntime ( cwd , config . packagePath , config . buildCommand ) ,
60
+ buildAndPackRuntime ( { ... config , dest : cwd } ) ,
59
61
copyFixture ( fixture , cwd ) ,
60
62
] )
61
63
await installRuntime ( packageName , cwd , config . packageManger || 'npm' , config . packagePath )
@@ -94,11 +96,13 @@ async function copyFixture(fixtureName: string, dest: string): Promise<void> {
94
96
}
95
97
96
98
/** Creates a tarball of the packed npm package at the provided destination */
97
- async function buildAndPackRuntime (
98
- dest : string ,
99
- packagePath : string = '' ,
100
- buildCommand = 'next build' ,
101
- ) : Promise < string > {
99
+ async function buildAndPackRuntime ( config : {
100
+ dest : string
101
+ packagePath ?: string
102
+ buildCommand ?: string
103
+ publishDirectory ?: string
104
+ } ) : Promise < string > {
105
+ const { dest, packagePath = '' , buildCommand = 'next build' , publishDirectory } = config
102
106
console . log ( `📦 Creating tarball with 'npm pack'...` )
103
107
104
108
const { stdout } = await execaCommand (
@@ -111,7 +115,7 @@ async function buildAndPackRuntime(
111
115
join ( join ( dest , packagePath ) , 'netlify.toml' ) ,
112
116
`[build]
113
117
command = "${ buildCommand } "
114
- publish = "${ join ( packagePath , '.next' ) } "
118
+ publish = "${ publishDirectory ?? join ( packagePath , '.next' ) } "
115
119
116
120
[[plugins]]
117
121
package = "${ name } "
@@ -129,16 +133,21 @@ async function installRuntime(
129
133
) : Promise < void > {
130
134
console . log ( `🐣 Installing runtime from '${ packageName } '...` )
131
135
136
+ let filter = ''
137
+ // only add the filter if a package.json exits in the packagePath
138
+ // some monorepos like nx don't have a package.json in the app folder
139
+ if ( packagePath && existsSync ( join ( cwd , packagePath , 'package.json' ) ) ) {
140
+ filter = `--filter ./${ packagePath } `
141
+ }
142
+
132
143
let command : string = `npm install --ignore-scripts --no-audit ${ packageName } `
133
144
134
145
switch ( packageManger ) {
135
146
case 'yarn' :
136
147
command = `yarn add file:${ join ( cwd , packageName ) } --ignore-scripts`
137
148
break
138
149
case 'pnpm' :
139
- command = `pnpm add file:${ join ( cwd , packageName ) } ${
140
- packagePath ? `--filter ./${ packagePath } ` : ''
141
- } --ignore-scripts`
150
+ command = `pnpm add file:${ join ( cwd , packageName ) } ${ filter } --ignore-scripts`
142
151
break
143
152
case 'bun' :
144
153
command = `bun install ./${ packageName } `
@@ -212,6 +221,7 @@ export const test = base.extend<
212
221
simpleNextAppBun : Fixture
213
222
middleware : Fixture
214
223
pageRouter : Fixture
224
+ nxIntegrated : Fixture
215
225
turborepo : Fixture
216
226
turborepoNPM : Fixture
217
227
}
@@ -232,6 +242,12 @@ export const test = base.extend<
232
242
packagePath : 'apps/page-router' ,
233
243
buildCommand : 'turbo build --filter page-router' ,
234
244
} ) ,
245
+ nxIntegrated : makeE2EFixture ( 'nx-integrated' , {
246
+ packageManger : 'pnpm' ,
247
+ packagePath : 'apps/next-app' ,
248
+ buildCommand : 'nx run next-app:build' ,
249
+ publishDirectory : 'dist/apps/next-app/.next' ,
250
+ } ) ,
235
251
236
252
takeScreenshot : [
237
253
async ( { page } , use , testInfo ) => {
0 commit comments