Skip to content

Commit 1757ae2

Browse files
committed
feat: update forms warning
1 parent b43f3a9 commit 1757ae2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/build/verification.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ const formDetectionRegex = /<form[^>]*?\s(netlify|data-netlify)[=>\s]/
9595
export async function verifyNetlifyFormsWorkaround(ctx: PluginContext) {
9696
const srcDir = ctx.resolveFromSiteDir('public')
9797
const paths = await glob(join(srcDir, '**/*.html'))
98-
console.log(join(srcDir, '**/*.html'), paths)
9998
try {
10099
for (const path of paths) {
101100
const html = await readFile(path, 'utf-8')
@@ -116,7 +115,7 @@ export function verifyNetlifyForms(ctx: PluginContext, html: string) {
116115
formDetectionRegex.test(html)
117116
) {
118117
console.warn(
119-
'@netlify/plugin-next@5 does not support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
118+
'@netlify/plugin-next@5 requires migration steps to support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
120119
)
121120
verifications.add('netlifyForms')
122121
}

tests/integration/netlify-forms.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ it<FixtureTestContext>('should warn when netlify forms are used', async (ctx) =>
2727
const runPluginPromise = await runPlugin(ctx)
2828

2929
expect(warn).toBeCalledWith(
30-
'@netlify/plugin-next@5 does not support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
30+
'@netlify/plugin-next@5 requires migration steps to support Netlify Forms. Refer to https://ntl.fyi/next-runtime-forms-migration for migration example.',
3131
)
3232
})
3333

0 commit comments

Comments
 (0)