mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
19 lines
342 B
JavaScript
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/**'
|
||
|
})
|
||
|
]
|
||
|
}
|