Change bootstrap to source version
This commit is contained in:
17
bootstrap/js/tests/integration/rollup.bundle-modularity.js
Normal file
17
bootstrap/js/tests/integration/rollup.bundle-modularity.js
Normal file
@ -0,0 +1,17 @@
|
||||
'use strict'
|
||||
|
||||
const commonjs = require('@rollup/plugin-commonjs')
|
||||
const configRollup = require('./rollup.bundle.js')
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user