Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: only clear stale functions with build through CLI #2536

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/build/functions/edge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,11 @@ const buildHandlerDefinition = (
}))
}

export const createEdgeHandlers = async (ctx: PluginContext) => {
export const clearStaleEdgeHandlers = async (ctx: PluginContext) => {
await rm(ctx.edgeFunctionsDir, { recursive: true, force: true })
}

export const createEdgeHandlers = async (ctx: PluginContext) => {
const nextManifest = await ctx.getMiddlewareManifest()
const nextDefinitions = [
...Object.values(nextManifest.middleware),
Expand Down
5 changes: 4 additions & 1 deletion src/build/functions/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,15 @@ const writeHandlerFile = async (ctx: PluginContext) => {
await writeFile(join(ctx.serverHandlerRootDir, `${SERVER_HANDLER_NAME}.mjs`), handler)
}

export const clearStaleServerHandlers = async (ctx: PluginContext) => {
await rm(ctx.serverFunctionsDir, { recursive: true, force: true })
}

/**
* Create a Netlify function to run the Next.js server
*/
export const createServerHandler = async (ctx: PluginContext) => {
await tracer.withActiveSpan('createServerHandler', async () => {
await rm(ctx.serverFunctionsDir, { recursive: true, force: true })
await mkdir(join(ctx.serverHandlerDir, '.netlify'), { recursive: true })

await copyNextServerCode(ctx)
Expand Down
15 changes: 11 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {
publishStaticDir,
unpublishStaticDir,
} from './build/content/static.js'
import { createEdgeHandlers } from './build/functions/edge.js'
import { createServerHandler } from './build/functions/server.js'
import { clearStaleEdgeHandlers, createEdgeHandlers } from './build/functions/edge.js'
import { clearStaleServerHandlers, createServerHandler } from './build/functions/server.js'
import { setImageConfig } from './build/image-cdn.js'
import { PluginContext } from './build/plugin-context.js'
import {
Expand All @@ -38,8 +38,15 @@ export const onPreBuild = async (options: NetlifyPluginOptions) => {
await tracer.withActiveSpan('onPreBuild', async () => {
// Enable Next.js standalone mode at build time
process.env.NEXT_PRIVATE_STANDALONE = 'true'
if (!options.constants.IS_LOCAL) {
await restoreBuildCache(new PluginContext(options))
const ctx = new PluginContext(options)
if (options.constants.IS_LOCAL) {
// Only clear directory if we are running locally as then we might have stale functions from previous
// local builds. Directory clearing interferes with other integrations by deleting functions produced by them
// so ideally this is completely avoided.
await clearStaleServerHandlers(ctx)
await clearStaleEdgeHandlers(ctx)
} else {
await restoreBuildCache(ctx)
}
})
}
Expand Down
Loading