Skip to content

Commit

Permalink
fix: run output plugins last
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson authored and lukastaegert committed Jul 6, 2022
1 parent 7a8316a commit 44836eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/PluginDriver.ts
Expand Up @@ -105,7 +105,7 @@ export class PluginDriver {
this.finaliseAssets = this.fileEmitter.finaliseAssets.bind(this.fileEmitter);
this.setChunkInformation = this.fileEmitter.setChunkInformation.bind(this.fileEmitter);
this.setOutputBundle = this.fileEmitter.setOutputBundle.bind(this.fileEmitter);
this.plugins = userPlugins.concat(basePluginDriver ? basePluginDriver.plugins : []);
this.plugins = (basePluginDriver ? basePluginDriver.plugins : []).concat(userPlugins);
const existingPluginNames = new Set<string>();

this.pluginContexts = new Map(
Expand Down

0 comments on commit 44836eb

Please sign in to comment.