aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2018-06-17 22:59:48 +0200
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit83cea3bafa57987b8cd6be0557bbca8364ab1fee (patch)
treeeabbe103289eec7601af10d778ba708cd89e51e5
parent6b0808354d212272030e598f4e8ea9e2bce7703a (diff)
downloadbootstrap-83cea3bafa57987b8cd6be0557bbca8364ab1fee.tar.xz
bootstrap-83cea3bafa57987b8cd6be0557bbca8364ab1fee.zip
fix(build): remove jquery in our build
-rw-r--r--build/rollup.config.js1
-rw-r--r--package.json6
2 files changed, 1 insertions, 6 deletions
diff --git a/build/rollup.config.js b/build/rollup.config.js
index e81a07ef5..b3a7929ec 100644
--- a/build/rollup.config.js
+++ b/build/rollup.config.js
@@ -22,7 +22,6 @@ const plugins = [
})
]
const globals = {
- jquery: 'jQuery', // Ensure we use jQuery which is always available even in noConflict mode
'popper.js': 'Popper'
}
diff --git a/package.json b/package.json
index 09c273343..f204287f2 100644
--- a/package.json
+++ b/package.json
@@ -96,7 +96,6 @@
"license": "MIT",
"dependencies": {},
"peerDependencies": {
- "jquery": "1.9.1 - 3",
"popper.js": "^1.14.7"
},
"devDependencies": {
@@ -203,15 +202,12 @@
"shim": {
"js/bootstrap": {
"deps": [
- "jquery",
"popper.js"
- ],
- "exports": "$"
+ ]
}
},
"dependencies": {},
"peerDependencies": {
- "jquery": "1.9.1 - 3",
"popper.js": "^1.14.7"
}
}