Skip to content

Commit

Permalink
fix: fix wrong typo of instance property
Browse files Browse the repository at this point in the history
  • Loading branch information
teclone committed Mar 23, 2019
1 parent c09c0d1 commit dd4ac09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class Bundler {
constructor(uglifierPlugin, otherPlugins, configPath) {
this.configPath = configPath ? configPath : '.buildrc.json';
this.plugins = Util.isArray(otherPlugins) ? otherPlugins : [];
this.pluginsWithUglifer = uglifierPlugin ? [...this.plugins, uglifierPlugin] : null;
this.pluginsWithUglifier = uglifierPlugin ? [...this.plugins, uglifierPlugin] : null;
}

/**
Expand Down

0 comments on commit dd4ac09

Please sign in to comment.