Skip to content

Commit a5e09ab

Browse files
committed
chore: remove beta warning
1 parent b7fbe83 commit a5e09ab

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/helpers/verification.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,3 @@ exports.checkZipSize = async (file, maxSize = LAMBDA_MAX_SIZE) => {
110110
greenBright`\n\nFor more information on fixing this, see ${blueBright`https://ntl.fyi/large-next-functions`}`,
111111
)
112112
}
113-
114-
exports.logBetaMessage = () =>
115-
console.log(
116-
greenBright(
117-
outdent`
118-
Thank you for trying the Essential Next.js beta plugin.
119-
Please share feedback (both good and bad) at ${blueBright`https://ntl.fyi/next-beta-feedback`}
120-
`,
121-
),
122-
)

src/index.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const {
1010
verifyNetlifyBuildVersion,
1111
checkNextSiteHasBuilt,
1212
checkForRootPublish,
13-
logBetaMessage,
1413
checkZipSize,
1514
checkForOldFunctions,
1615
} = require('./helpers/verification')
@@ -25,7 +24,6 @@ module.exports = {
2524
cache,
2625
},
2726
}) {
28-
logBetaMessage()
2927
const { publish } = netlifyConfig.build
3028
checkForRootPublish({ publish, failBuild })
3129
verifyNetlifyBuildVersion({ failBuild, ...constants })
@@ -89,7 +87,4 @@ module.exports = {
8987
const { basePath } = await getNextConfig({ publish: netlifyConfig.build.publish, failBuild })
9088
await unpatchNextFiles(basePath)
9189
},
92-
onEnd() {
93-
logBetaMessage()
94-
},
9590
}

0 commit comments

Comments
 (0)