aboutsummaryrefslogtreecommitdiff
path: root/js/tests/integration
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-05-26 06:14:12 +0300
committerGitHub <[email protected]>2020-05-26 06:14:12 +0300
commit340236cbe4a5bfb3fb3583f177ba7a493bb4f21c (patch)
tree6fc829896c5ee381a7457244d3d100012b5eef01 /js/tests/integration
parentc9cd3e4a083a69bcd2eefb1d1b62e6106e2ce469 (diff)
downloadbootstrap-340236cbe4a5bfb3fb3583f177ba7a493bb4f21c.tar.xz
bootstrap-340236cbe4a5bfb3fb3583f177ba7a493bb4f21c.zip
Update to `@rollup/plugin-babel` (#30742)
Diffstat (limited to 'js/tests/integration')
-rw-r--r--js/tests/integration/rollup.bundle.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/tests/integration/rollup.bundle.js b/js/tests/integration/rollup.bundle.js
index d09a9dbbe..0ac6e406a 100644
--- a/js/tests/integration/rollup.bundle.js
+++ b/js/tests/integration/rollup.bundle.js
@@ -1,7 +1,7 @@
/* eslint-env node */
const resolve = require('@rollup/plugin-node-resolve')
-const babel = require('rollup-plugin-babel')
+const { babel } = require('@rollup/plugin-babel')
module.exports = {
input: 'js/tests/integration/bundle.js',
@@ -12,7 +12,8 @@ module.exports = {
plugins: [
resolve(),
babel({
- exclude: 'node_modules/**'
+ exclude: 'node_modules/**',
+ babelHelpers: 'bundled'
})
]
}