mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-13 01:08:58 +01:00
ae43f0c48b
* Tweak and re-organize ESLint config * merge individual configs to the root config * enable more eslint-plugin-import rules * lint markdown files * Lint
18 lines
352 B
JavaScript
18 lines
352 B
JavaScript
'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
|