1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/tests/integration/rollup.bundle-modularity.js

18 lines
357 B
JavaScript
Raw Normal View History

2019-10-02 08:32:29 -04:00
/* eslint-env node */
const commonjs = require('rollup-plugin-commonjs')
const configRollup = require('./rollup.bundle')
const config = {
...configRollup,
input: 'js/tests/integration/bundle-modularity.js',
output: {
file: 'js/coverage/bundle-modularity.js',
format: 'iife'
}
}
config.plugins.unshift(commonjs())
module.exports = config