0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-02 14:24:19 +01:00
Bootstrap/js/tests/integration/rollup.bundle.js
2019-03-11 17:59:08 +02:00

19 lines
342 B
JavaScript

/* eslint-env node */
const resolve = require('rollup-plugin-node-resolve')
const babel = require('rollup-plugin-babel')
module.exports = {
input: 'js/tests/integration/bundle.js',
output: {
file: 'js/coverage/bundle.js',
format: 'iife'
},
plugins: [
resolve(),
babel({
exclude: 'node_modules/**'
})
]
}