From fe3cc95c88aaa73843091c69beb909b103a0e9ff Mon Sep 17 00:00:00 2001 From: Jonathan Creamer Date: Tue, 10 Jul 2018 10:14:58 -0500 Subject: [PATCH] fix(build): remove babel plugin for external helpers (#40) --- gulpfile.js | 1 - 1 file changed, 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 53a7187..8ca8377 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -58,7 +58,6 @@ const _getBabelConfig = (format) => ({ plugins: [ '@babel/proposal-class-properties', '@babel/proposal-object-rest-spread', - '@babel/plugin-external-helpers', ...(format === FORMAT_UMD ? [UMD_TRANSFORM_PLUGIN] : []), ], });