0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00

fix(build): remove jquery in our build

This commit is contained in:
Johann-S 2018-06-17 22:59:48 +02:00 committed by XhmikosR
parent 6b0808354d
commit 83cea3bafa
2 changed files with 1 additions and 6 deletions

View File

@ -22,7 +22,6 @@ const plugins = [
}) })
] ]
const globals = { const globals = {
jquery: 'jQuery', // Ensure we use jQuery which is always available even in noConflict mode
'popper.js': 'Popper' 'popper.js': 'Popper'
} }

View File

@ -96,7 +96,6 @@
"license": "MIT", "license": "MIT",
"dependencies": {}, "dependencies": {},
"peerDependencies": { "peerDependencies": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.14.7" "popper.js": "^1.14.7"
}, },
"devDependencies": { "devDependencies": {
@ -203,15 +202,12 @@
"shim": { "shim": {
"js/bootstrap": { "js/bootstrap": {
"deps": [ "deps": [
"jquery",
"popper.js" "popper.js"
], ]
"exports": "$"
} }
}, },
"dependencies": {}, "dependencies": {},
"peerDependencies": { "peerDependencies": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.14.7" "popper.js": "^1.14.7"
} }
} }