File tree 2 files changed +11
-1
lines changed
packages/gatsby/src/redux 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,16 @@ export function pageDataProcessorsReducer(
24
24
processorsByPath . add ( action . payload . moduleID )
25
25
return state
26
26
}
27
+
28
+ case `DELETE_COMPONENTS_DEPENDENCIES` : {
29
+ const { paths } = action . payload
30
+
31
+ paths . forEach ( path => {
32
+ state . delete ( path )
33
+ } )
34
+
35
+ return state
36
+ }
27
37
}
28
38
29
39
return state
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export interface IGatsbyState {
235
235
pageData : Map < Identifier , string >
236
236
modules : Map < string , IDependencyModule >
237
237
queryModuleDependencies : Map < string , Set < string > >
238
- pageDataProcessors : Map < string , Map < string , Array < string > > >
238
+ pageDataProcessors : Map < string , Map < string , Set < string > > >
239
239
}
240
240
241
241
export interface IDependencyModule {
You can’t perform that action at this time.
0 commit comments