File tree 1 file changed +13
-0
lines changed
packages/gatsby/src/utils
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,14 @@ function getStaleNodes(
81
81
} )
82
82
}
83
83
84
+ const GatsbyManagedStatefulNodeTypes = new Set ( [
85
+ // Gatsby will create and delete SitePage nodes as pages are created and deleted.
86
+ // Additionally this node type is not even created at the time we delete stale nodes
87
+ // so cleanup would happen too early resulting in deleting each nodes from previous run
88
+ // and potentially recreating all of them on `createPages` that happens later.
89
+ `SitePage` ,
90
+ ] )
91
+
84
92
/**
85
93
* Find all stale nodes and delete them unless the node type has been opted out of stale node garbage collection.
86
94
*/
@@ -99,6 +107,11 @@ async function deleteStaleNodes(
99
107
const { typeOwners, statefulSourcePlugins } = state
100
108
101
109
for ( const typeName of previouslyExistingNodeTypeNames ) {
110
+ if ( GatsbyManagedStatefulNodeTypes . has ( typeName ) ) {
111
+ // skip any stateful node types that are managed by Gatsby
112
+ continue
113
+ }
114
+
102
115
const pluginName = typeOwners . typesToPlugins . get ( typeName )
103
116
104
117
// no need to check this type if its owner has declared its a stateful source plugin
You can’t perform that action at this time.
0 commit comments