From 5538ffb29214be2c946eb846ddbc41ee839b590f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 7 Dec 2020 19:06:17 +0200 Subject: [PATCH] build-plugins: switch to "bundled" for babel helpers (#32312) --- build/build-plugins.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build-plugins.js b/build/build-plugins.js index 78f76622a4..ea74773902 100644 --- a/build/build-plugins.js +++ b/build/build-plugins.js @@ -19,8 +19,8 @@ const plugins = [ babel({ // Only transpile our source code exclude: 'node_modules/**', - // Inline the required helpers in each file - babelHelpers: 'inline' + // Include the helpers in each file, at most one copy of each + babelHelpers: 'bundled' }) ] const bsPlugins = {