File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,9 @@ export const copyStaticAssets = async (ctx: PluginContext): Promise<void> => {
60
60
*/
61
61
export const publishStaticDir = async ( ctx : PluginContext ) : Promise < void > => {
62
62
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 )
65
66
await rename ( ctx . staticDir , ctx . publishDir )
66
67
} catch ( error ) {
67
68
ctx . failBuild ( 'Failed publishing static content' , error instanceof Error ? { error } : { } )
@@ -73,9 +74,9 @@ export const publishStaticDir = async (ctx: PluginContext): Promise<void> => {
73
74
*/
74
75
export const unpublishStaticDir = async ( ctx : PluginContext ) : Promise < void > => {
75
76
try {
76
- if ( existsSync ( ctx . resolve ( '.netlify/.next' ) ) ) {
77
+ if ( existsSync ( ctx . tempPublishDir ) ) {
77
78
await rename ( ctx . publishDir , ctx . staticDir )
78
- await rename ( ctx . resolve ( '.netlify/.next' ) , ctx . publishDir )
79
+ await rename ( ctx . tempPublishDir , ctx . publishDir )
79
80
}
80
81
} catch {
81
82
// ignore
Original file line number Diff line number Diff line change @@ -37,6 +37,11 @@ export class PluginContext {
37
37
return this . constants . PUBLISH_DIR ?? join ( this . packagePath , DEFAULT_PUBLISH_DIR )
38
38
}
39
39
40
+ /** Temporary directory for stashing the build output */
41
+ get tempPublishDir ( ) : string {
42
+ return this . resolve ( '.netlify/.next' )
43
+ }
44
+
40
45
/** Absolute path of the publish directory */
41
46
get publishDir ( ) : string {
42
47
// Does not need to be resolved with the package path as it is always a repository absolute path
You can’t perform that action at this time.
0 commit comments