refactor: stub out new updateModuleInfo params

This commit is contained in:
bholmesdev 2022-06-22 19:41:58 -04:00
parent aab15e546a
commit 22ddb74df4

View file

@ -41,7 +41,7 @@ export async function trackCSSDependencies(
}
// Update the module graph, telling it about our CSS deps.
moduleGraph.updateModuleInfo(mod, depModules, new Set(), true);
moduleGraph.updateModuleInfo(mod, depModules, new Map(), new Set(), new Set(), true);
for (const dep of cssDeps) {
this.addWatchFile(dep);
}