aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-07-09 15:21:41 +0300
committerGitHub <[email protected]>2020-07-09 15:21:41 +0300
commit38bcf108c9cc2b3b6c4b118710f73669fa8b3c04 (patch)
tree649582fc2f6fa0746216237e9bd309e3cc1c129b /js
parentf40e1b651b8a8973b525a3b754c8dd1bfadd2db0 (diff)
downloadbootstrap-38bcf108c9cc2b3b6c4b118710f73669fa8b3c04.tar.xz
bootstrap-38bcf108c9cc2b3b6c4b118710f73669fa8b3c04.zip
Update dependencies, gems and regenerate package-lock.json (#31261)
* @rollup/plugin-node-resolve 8.1.0 * popper.js 1.16.1 * qunit 2.10.1 * rollup 2.21.0
Diffstat (limited to 'js')
-rw-r--r--js/tests/integration/rollup.bundle.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/integration/rollup.bundle.js b/js/tests/integration/rollup.bundle.js
index e554d8ce4..7e6f662cd 100644
--- a/js/tests/integration/rollup.bundle.js
+++ b/js/tests/integration/rollup.bundle.js
@@ -1,8 +1,8 @@
/* eslint-env node */
-const resolve = require('@rollup/plugin-node-resolve')
const commonjs = require('@rollup/plugin-commonjs')
const { babel } = require('@rollup/plugin-babel')
+const { nodeResolve } = require('@rollup/plugin-node-resolve')
module.exports = {
input: 'js/tests/integration/bundle.js',
@@ -11,7 +11,7 @@ module.exports = {
format: 'iife'
},
plugins: [
- resolve(),
+ nodeResolve(),
commonjs(),
babel({
exclude: 'node_modules/**',