1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-09 23:26:40 +02:00

Update to @rollup/plugin-babel (#30742)

This commit is contained in:
XhmikosR
2020-05-26 06:14:12 +03:00
committed by GitHub
parent c9cd3e4a08
commit 340236cbe4
7 changed files with 23 additions and 42 deletions

View File

@@ -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'
})
]
}