diff options
| author | XhmikosR <[email protected]> | 2020-12-07 19:06:17 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2021-01-08 12:04:37 +0200 |
| commit | 810de41bc30b22c17f306a8a1ed3beea39846e60 (patch) | |
| tree | d943312053bc895e095d5cb63e9cb809757510d9 | |
| parent | 307c08af42101166a4b5d21ecce0efda864daef1 (diff) | |
| download | bootstrap-810de41bc30b22c17f306a8a1ed3beea39846e60.tar.xz bootstrap-810de41bc30b22c17f306a8a1ed3beea39846e60.zip | |
build-plugins: switch to "bundled" for babel helpers (#32312)
| -rw-r--r-- | build/build-plugins.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/build-plugins.js b/build/build-plugins.js index 521450f85..3406f50ba 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 = { |
