2018-11-28 12:03:28 +01:00
|
|
|
'use strict'
|
|
|
|
|
2019-02-26 12:20:34 +01:00
|
|
|
const path = require('path')
|
2020-05-26 05:14:12 +02:00
|
|
|
const { babel } = require('@rollup/plugin-babel')
|
2020-07-07 09:23:11 +02:00
|
|
|
const { nodeResolve } = require('@rollup/plugin-node-resolve')
|
2019-02-26 12:20:34 +01:00
|
|
|
const banner = require('./banner.js')
|
2017-12-16 13:00:38 +01:00
|
|
|
|
2019-02-26 12:20:34 +01:00
|
|
|
const BUNDLE = process.env.BUNDLE === 'true'
|
2019-03-01 10:11:41 +01:00
|
|
|
const ESM = process.env.ESM === 'true'
|
2017-08-29 21:16:00 +02:00
|
|
|
|
2019-03-01 23:50:31 +01:00
|
|
|
let fileDest = `bootstrap${ESM ? '.esm' : ''}`
|
2018-09-14 14:27:30 +02:00
|
|
|
const external = ['popper.js']
|
2017-08-29 21:16:00 +02:00
|
|
|
const plugins = [
|
2019-04-15 10:40:49 +02:00
|
|
|
babel({
|
|
|
|
// Only transpile our source code
|
|
|
|
exclude: 'node_modules/**',
|
2020-05-26 05:14:12 +02:00
|
|
|
// Include the helpers in the bundle, at most one copy of each
|
|
|
|
babelHelpers: 'bundled'
|
2019-04-15 10:40:49 +02:00
|
|
|
})
|
2017-08-29 21:16:00 +02:00
|
|
|
]
|
|
|
|
const globals = {
|
|
|
|
'popper.js': 'Popper'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BUNDLE) {
|
2019-03-01 23:50:31 +01:00
|
|
|
fileDest += '.bundle'
|
2018-10-14 13:59:51 +02:00
|
|
|
// Remove last entry in external array to bundle Popper
|
|
|
|
external.pop()
|
2017-08-29 21:16:00 +02:00
|
|
|
delete globals['popper.js']
|
2020-07-07 09:23:11 +02:00
|
|
|
plugins.push(nodeResolve())
|
2017-08-29 21:16:00 +02:00
|
|
|
}
|
|
|
|
|
2019-03-01 10:11:41 +01:00
|
|
|
const rollupConfig = {
|
2019-03-01 23:50:31 +01:00
|
|
|
input: path.resolve(__dirname, `../js/index.${ESM ? 'esm' : 'umd'}.js`),
|
2017-08-29 21:16:00 +02:00
|
|
|
output: {
|
2018-09-25 17:55:35 +02:00
|
|
|
banner,
|
2019-03-01 23:50:31 +01:00
|
|
|
file: path.resolve(__dirname, `../dist/js/${fileDest}.js`),
|
2019-03-01 10:11:41 +01:00
|
|
|
format: ESM ? 'esm' : 'umd',
|
|
|
|
globals
|
2017-12-31 01:03:22 +01:00
|
|
|
},
|
|
|
|
external,
|
|
|
|
plugins
|
2017-08-29 21:16:00 +02:00
|
|
|
}
|
2019-03-01 10:11:41 +01:00
|
|
|
|
|
|
|
if (!ESM) {
|
|
|
|
rollupConfig.output.name = 'bootstrap'
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = rollupConfig
|