1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-01 17:32:41 +02:00
Update to `@rollup/plugin-babel`
This commit is contained in:
XhmikosR
2020-05-26 19:20:15 +03:00
parent fdb596b2c3
commit 7a9bbd4489
6 changed files with 29 additions and 60 deletions

View File

@@ -2,7 +2,7 @@
const resolve = require('@rollup/plugin-node-resolve')
const commonjs = require('@rollup/plugin-commonjs')
const babel = require('rollup-plugin-babel')
const { babel } = require('@rollup/plugin-babel')
module.exports = {
input: 'js/tests/integration/bundle.js',
@@ -14,7 +14,8 @@ module.exports = {
resolve(),
commonjs(),
babel({
exclude: 'node_modules/**'
exclude: 'node_modules/**',
babelHelpers: 'bundled'
})
]
}