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
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2017-10-24 11:12:45 +0300
committerJohann-S <johann.servoire@gmail.com>2017-10-24 13:39:25 +0300
commit62fbb23ee61999e362cd8ade6073732a46466077 (patch)
tree4407025061f33fc39da7526f544b773f7457078c /build/rollup.config.js
parentca4ad8bee8000617c2ae1a08afe7af1103058776 (diff)
Change Rollup config to wrap our dist files with jQuery instead of $
Diffstat (limited to 'build/rollup.config.js')
-rw-r--r--build/rollup.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/rollup.config.js b/build/rollup.config.js
index 9faeb08826..f9a4706160 100644
--- a/build/rollup.config.js
+++ b/build/rollup.config.js
@@ -20,7 +20,7 @@ const plugins = [
})
]
const globals = {
- jquery: '$',
+ jquery: 'jQuery', // ensure we use jQuery which is always available even in noConflict mode
'popper.js': 'Popper'
}