mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-04 22:46:13 +01:00
61276d0881
* sinon 8.x doesn't work with IE, so leave it at 7.x.
21 lines
411 B
JavaScript
21 lines
411 B
JavaScript
/* eslint-env node */
|
|
|
|
const resolve = require('@rollup/plugin-node-resolve')
|
|
const commonjs = require('@rollup/plugin-commonjs')
|
|
const babel = require('rollup-plugin-babel')
|
|
|
|
module.exports = {
|
|
input: 'js/tests/integration/bundle.js',
|
|
output: {
|
|
file: 'js/coverage/bundle.js',
|
|
format: 'iife'
|
|
},
|
|
plugins: [
|
|
resolve(),
|
|
commonjs(),
|
|
babel({
|
|
exclude: 'node_modules/**'
|
|
})
|
|
]
|
|
}
|