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-02 09:30:35 +0300
committerGitHub <noreply@github.com>2020-12-02 09:30:35 +0300
commitcfd00b5eeb7b7440afb3f115a66ea3c58e2e2d5d (patch)
treef284b224add26a16b278d443205b19fec56cf936 /build
parentbb369ca81351404f2e377168945198c467b8cf28 (diff)
Remove Polyfill leftovers (#32310)
Leftovers from #32057
Diffstat (limited to 'build')
-rw-r--r--build/build-plugins.js1
-rw-r--r--build/rollup.config.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/build/build-plugins.js b/build/build-plugins.js
index 1f44a3b856..7deda49b12 100644
--- a/build/build-plugins.js
+++ b/build/build-plugins.js
@@ -59,7 +59,6 @@ const getConfigByPluginKey = pluginKey => {
pluginKey === 'Data' ||
pluginKey === 'Manipulator' ||
pluginKey === 'EventHandler' ||
- pluginKey === 'Polyfill' ||
pluginKey === 'SelectorEngine' ||
pluginKey === 'Util' ||
pluginKey === 'Sanitizer'
diff --git a/build/rollup.config.js b/build/rollup.config.js
index 1ee6745523..05579d165a 100644
--- a/build/rollup.config.js
+++ b/build/rollup.config.js
@@ -12,7 +12,7 @@ let fileDest = `bootstrap${ESM ? '.esm' : ''}`
const external = ['popper.js']
const plugins = [
babel({
- // Only transpile our source code
+ // Only transpile our source code
exclude: 'node_modules/**',
// Include the helpers in the bundle, at most one copy of each
babelHelpers: 'bundled'