Skip to content

Commit 3d7b20f

Browse files
authoredFeb 19, 2024
fix: remove temp publish dir before moving static content (#278)
1 parent 6b3edc3 commit 3d7b20f

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
 

‎src/build/content/static.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ export const copyStaticAssets = async (ctx: PluginContext): Promise<void> => {
6060
*/
6161
export const publishStaticDir = async (ctx: PluginContext): Promise<void> => {
6262
try {
63-
await mkdir(ctx.resolve('.netlify/.next'), { recursive: true })
64-
await rename(ctx.publishDir, ctx.resolve('.netlify/.next'))
63+
await rm(ctx.tempPublishDir, { recursive: true, force: true })
64+
await mkdir(ctx.tempPublishDir, { recursive: true })
65+
await rename(ctx.publishDir, ctx.tempPublishDir)
6566
await rename(ctx.staticDir, ctx.publishDir)
6667
} catch (error) {
6768
ctx.failBuild('Failed publishing static content', error instanceof Error ? { error } : {})
@@ -73,9 +74,9 @@ export const publishStaticDir = async (ctx: PluginContext): Promise<void> => {
7374
*/
7475
export const unpublishStaticDir = async (ctx: PluginContext): Promise<void> => {
7576
try {
76-
if (existsSync(ctx.resolve('.netlify/.next'))) {
77+
if (existsSync(ctx.tempPublishDir)) {
7778
await rename(ctx.publishDir, ctx.staticDir)
78-
await rename(ctx.resolve('.netlify/.next'), ctx.publishDir)
79+
await rename(ctx.tempPublishDir, ctx.publishDir)
7980
}
8081
} catch {
8182
// ignore

‎src/build/plugin-context.ts

+5
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ export class PluginContext {
3737
return this.constants.PUBLISH_DIR ?? join(this.packagePath, DEFAULT_PUBLISH_DIR)
3838
}
3939

40+
/** Temporary directory for stashing the build output */
41+
get tempPublishDir(): string {
42+
return this.resolve('.netlify/.next')
43+
}
44+
4045
/** Absolute path of the publish directory */
4146
get publishDir(): string {
4247
// Does not need to be resolved with the package path as it is always a repository absolute path

0 commit comments

Comments
 (0)