0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/build/rollup.config.js

45 lines
1.0 KiB
JavaScript
Raw Normal View History

'use strict'
const path = require('path')
const { babel } = require('@rollup/plugin-babel')
const resolve = require('@rollup/plugin-node-resolve')
const banner = require('./banner.js')
2017-12-16 13:00:38 +01:00
const BUNDLE = process.env.BUNDLE === 'true'
let fileDest = 'bootstrap.js'
2018-10-14 13:59:51 +02:00
const external = ['jquery', 'popper.js']
const plugins = [
babel({
// Only transpile our source code
exclude: 'node_modules/**',
// Include the helpers in the bundle, at most one copy of each
babelHelpers: 'bundled'
})
]
const globals = {
2017-12-16 13:00:38 +01:00
jquery: 'jQuery', // Ensure we use jQuery which is always available even in noConflict mode
'popper.js': 'Popper'
}
if (BUNDLE) {
fileDest = 'bootstrap.bundle.js'
2018-10-14 13:59:51 +02:00
// Remove last entry in external array to bundle Popper
external.pop()
delete globals['popper.js']
2018-10-14 13:59:51 +02:00
plugins.push(resolve())
}
module.exports = {
input: path.resolve(__dirname, '../js/src/index.js'),
output: {
banner,
file: path.resolve(__dirname, `../dist/js/${fileDest}`),
format: 'umd',
globals,
name: 'bootstrap'
},
external,
plugins
}