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-10-26 17:39:23 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-11-05 16:37:34 +0300
commit13572a6867f8f3275659bfb8874cc0ed6f63967b (patch)
tree3272c0f024b715ecbeb954d533b199fbf67ca098 /build
parente8f1709adfd79bd8a9dd1e99b240edd39fd91d11 (diff)
Remove the now unneeded polyfills.
Diffstat (limited to 'build')
-rw-r--r--build/build-plugins.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/build/build-plugins.js b/build/build-plugins.js
index c5c357645b..6d9cdb3324 100644
--- a/build/build-plugins.js
+++ b/build/build-plugins.js
@@ -26,7 +26,6 @@ const bsPlugins = {
Data: path.resolve(__dirname, '../js/src/dom/data.js'),
EventHandler: path.resolve(__dirname, '../js/src/dom/event-handler.js'),
Manipulator: path.resolve(__dirname, '../js/src/dom/manipulator.js'),
- Polyfill: path.resolve(__dirname, '../js/src/dom/polyfill.js'),
SelectorEngine: path.resolve(__dirname, '../js/src/dom/selector-engine.js'),
Alert: path.resolve(__dirname, '../js/src/alert.js'),
Button: path.resolve(__dirname, '../js/src/button.js'),
@@ -66,10 +65,7 @@ const getConfigByPluginKey = pluginKey => {
pluginKey === 'Sanitizer'
) {
return {
- external: [bsPlugins.Polyfill],
- globals: {
- [bsPlugins.Polyfill]: 'Polyfill'
- }
+ external: []
}
}
@@ -138,7 +134,6 @@ const domObjects = [
'Data',
'EventHandler',
'Manipulator',
- 'Polyfill',
'SelectorEngine'
]