Skip to content

Commit 6ea1ff7

Browse files
committed
fixes #67 do not fail build for unused export script
1 parent 45658af commit 6ea1ff7

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### Node ###
22

33
# Test
4+
/next.config.js # generates on test builds
45
test/sample/node_modules
56
test/sample/out_functions
67
test/sample/netlify-automatic-functions

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ node_modules
2020
__mocks__
2121
test/fixtures
2222
test/sample
23+
/next.config.js

helpers/isStaticExportProject.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@
44

55
const isStaticExportProject = ({ build, scripts }) => {
66
const NEXT_EXPORT_COMMAND = 'next export'
7-
const isSetInNetlifyConfig = build && build.command && build.command.includes(NEXT_EXPORT_COMMAND)
7+
8+
if (!build || !build.command) return
9+
10+
const isSetInNetlifyConfig = build.command.includes(NEXT_EXPORT_COMMAND)
11+
812
const isSetInNpmScript = Object.keys(scripts).find((script) => {
9-
return scripts[script].includes(NEXT_EXPORT_COMMAND)
13+
const scriptValue = scripts[script]
14+
return build.command.includes(script) && scriptValue.includes(NEXT_EXPORT_COMMAND)
1015
})
1116
return isSetInNetlifyConfig || isSetInNpmScript
1217
}

test/index.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,25 @@ describe('preBuild()', () => {
6363
test('fail build if the app has static html export in npm script', async () => {
6464
await expect(
6565
plugin.onPreBuild({
66-
netlifyConfig: {},
66+
netlifyConfig: { build: { command: 'npm run build' } },
6767
packageJson: { ...DUMMY_PACKAGE_JSON, scripts: { build: 'next export' } },
6868
utils,
6969
constants: { FUNCTIONS_SRC: 'out_functions' },
7070
}),
7171
).rejects.toThrow('** Static HTML export next.js projects do not require this plugin **')
7272
})
7373

74+
test('do not fail build if the app has next export in an unused script', async () => {
75+
await expect(
76+
plugin.onPreBuild({
77+
netlifyConfig: {},
78+
packageJson: { ...DUMMY_PACKAGE_JSON, scripts: { export: 'next export' } },
79+
utils,
80+
constants: {},
81+
}),
82+
).resolves
83+
})
84+
7485
test('fail build if the app has static html export in toml/ntl config', async () => {
7586
await expect(
7687
plugin.onPreBuild({

0 commit comments

Comments
 (0)