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-modularity.js

18 lines
358 B
JavaScript
Raw Normal View History

2019-10-02 14:32:29 +02:00
/* eslint-env node */
const commonjs = require('@rollup/plugin-commonjs')
2019-10-02 14:32:29 +02:00
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