Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-12-07 20:06:17 +0300
committerGitHub <noreply@github.com>2020-12-07 20:06:17 +0300
commit5538ffb29214be2c946eb846ddbc41ee839b590f (patch)
treedf2abbab007aaf35bd1b2a84e7aaa13c2054d5e1 /build
parentab49e362a7f76c370bf5e66a4fda087eb50a32e8 (diff)
build-plugins: switch to "bundled" for babel helpers (#32312)
Diffstat (limited to 'build')
-rw-r--r--build/build-plugins.js4
1 files 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 = {