1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-11 08:04:59 +02:00

add modularity integration test

This commit is contained in:
Johann-S
2019-10-02 14:32:29 +02:00
parent 3d12b541c4
commit e1b82f51e2
4 changed files with 63 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
/* 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