From dd4ac09218627698ee3df7123a346d2a6bb4d676 Mon Sep 17 00:00:00 2001 From: Harrison Ifeanyichukwu Date: Sat, 23 Mar 2019 17:00:22 +0100 Subject: [PATCH] fix: fix wrong typo of instance property --- src/modules/Bundler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/Bundler.js b/src/modules/Bundler.js index 17e0f2d..173b89b 100644 --- a/src/modules/Bundler.js +++ b/src/modules/Bundler.js @@ -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; } /**