Skip to content

Commit 7d184e0

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

File tree

5 files changed

+36
-11
lines changed

5 files changed

+36
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ test/sample/netlify-automatic-functions
77
test/sample/my-publish-dir
88
test/sample/.next
99
test/sample/.netlify
10+
next.config.js
1011

1112
# Logs
1213
logs

.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.command) return false
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
}

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ module.exports = {
2929
const { name, scripts = {}, dependencies = {} } = packageJson
3030

3131
if (isStaticExportProject({ build, scripts })) {
32-
return failBuild(`** Static HTML export next.js projects do not require this plugin **`)
32+
return failBuild(
33+
`Static HTML export Next.js projects do not require this plugin. Check your project's build command for 'next export'.`,
34+
)
3335
}
3436

3537
const hasNextOnNetlifyInstalled = dependencies['next-on-netlify'] !== undefined

test/index.js

+24-8
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,31 @@ afterEach(async () => {
5858
})
5959

6060
const DUMMY_PACKAGE_JSON = { name: 'dummy', version: '1.0.0' }
61+
const netlifyConfig = { build: {} }
6162

6263
describe('preBuild()', () => {
6364
test('fail build if the app has static html export in npm script', async () => {
6465
await expect(
6566
plugin.onPreBuild({
66-
netlifyConfig: {},
67+
netlifyConfig: { build: { command: 'npm run build' } },
6768
packageJson: { ...DUMMY_PACKAGE_JSON, scripts: { build: 'next export' } },
6869
utils,
6970
constants: { FUNCTIONS_SRC: 'out_functions' },
7071
}),
71-
).rejects.toThrow('** Static HTML export next.js projects do not require this plugin **')
72+
).rejects.toThrow(
73+
`Static HTML export Next.js projects do not require this plugin. Check your project's build command for 'next export'.`,
74+
)
75+
})
76+
77+
test('do not fail build if the app has next export in an unused script', async () => {
78+
await expect(
79+
plugin.onPreBuild({
80+
netlifyConfig,
81+
packageJson: { ...DUMMY_PACKAGE_JSON, scripts: { export: 'next export' } },
82+
utils,
83+
constants: {},
84+
}),
85+
).resolves
7286
})
7387

7488
test('fail build if the app has static html export in toml/ntl config', async () => {
@@ -79,7 +93,9 @@ describe('preBuild()', () => {
7993
utils,
8094
constants: { FUNCTIONS_SRC: 'out_functions' },
8195
}),
82-
).rejects.toThrow('** Static HTML export next.js projects do not require this plugin **')
96+
).rejects.toThrow(
97+
`Static HTML export Next.js projects do not require this plugin. Check your project's build command for 'next export'.`,
98+
)
8399
})
84100

85101
test('fail build if app has next-on-netlify installed', async () => {
@@ -88,7 +104,7 @@ describe('preBuild()', () => {
88104
}
89105
await expect(
90106
plugin.onPreBuild({
91-
netlifyConfig: {},
107+
netlifyConfig,
92108
packageJson,
93109
utils,
94110
}),
@@ -103,7 +119,7 @@ describe('preBuild()', () => {
103119
}
104120
await expect(
105121
plugin.onPreBuild({
106-
netlifyConfig: {},
122+
netlifyConfig,
107123
packageJson,
108124
utils,
109125
}),
@@ -115,7 +131,7 @@ describe('preBuild()', () => {
115131
test('fail build if the app has no package.json', async () => {
116132
await expect(
117133
plugin.onPreBuild({
118-
netlifyConfig: {},
134+
netlifyConfig,
119135
packageJson: {},
120136
utils,
121137
constants: { FUNCTIONS_SRC: 'out_functions' },
@@ -125,7 +141,7 @@ describe('preBuild()', () => {
125141

126142
test('create next.config.js with correct target if file does not exist', async () => {
127143
await plugin.onPreBuild({
128-
netlifyConfig: {},
144+
netlifyConfig,
129145
packageJson: DUMMY_PACKAGE_JSON,
130146
utils,
131147
constants: { FUNCTIONS_SRC: 'out_functions' },
@@ -140,7 +156,7 @@ describe('preBuild()', () => {
140156
await useFixture(fixtureName)
141157
await expect(
142158
plugin.onPreBuild({
143-
netlifyConfig: {},
159+
netlifyConfig,
144160
packageJson: DUMMY_PACKAGE_JSON,
145161
utils,
146162
constants: { FUNCTIONS_SRC: 'out_functions' },

0 commit comments

Comments
 (0)