2018-11-28 12:03:28 +01:00
|
|
|
'use strict'
|
|
|
|
|
2020-05-26 18:20:15 +02:00
|
|
|
const path = require('path')
|
|
|
|
const { babel } = require('@rollup/plugin-babel')
|
2019-12-31 17:53:30 +01:00
|
|
|
const resolve = require('@rollup/plugin-node-resolve')
|
2020-05-26 18:20:15 +02:00
|
|
|
const banner = require('./banner.js')
|
2017-12-16 13:00:38 +01:00
|
|
|
|
2020-05-26 18:20:15 +02:00
|
|
|
const BUNDLE = process.env.BUNDLE === 'true'
|
2017-08-29 21:16:00 +02:00
|
|
|
|
2020-05-26 18:20:15 +02:00
|
|
|
let fileDest = 'bootstrap.js'
|
2018-10-14 13:59:51 +02:00
|
|
|
const external = ['jquery', 'popper.js']
|
2017-08-29 21:16:00 +02:00
|
|
|
const plugins = [
|
|
|
|
babel({
|
2020-05-26 18:20:15 +02:00
|
|
|
// Only transpile our source code
|
2020-05-04 19:11:30 +02:00
|
|
|
exclude: 'node_modules/**',
|
2020-05-26 18:20:15 +02:00
|
|
|
// Include the helpers in the bundle, at most one copy of each
|
|
|
|
babelHelpers: 'bundled'
|
2017-08-29 21:16:00 +02:00
|
|
|
})
|
|
|
|
]
|
|
|
|
const globals = {
|
2017-12-16 13:00:38 +01:00
|
|
|
jquery: 'jQuery', // Ensure we use jQuery which is always available even in noConflict mode
|
2017-08-29 21:16:00 +02:00
|
|
|
'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()
|
2017-08-29 21:16:00 +02:00
|
|
|
delete globals['popper.js']
|
2018-10-14 13:59:51 +02:00
|
|
|
plugins.push(resolve())
|
2017-08-29 21:16:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
input: path.resolve(__dirname, '../js/src/index.js'),
|
|
|
|
output: {
|
2018-09-25 17:55:35 +02:00
|
|
|
banner,
|
2017-12-31 01:03:22 +01:00
|
|
|
file: path.resolve(__dirname, `../dist/js/${fileDest}`),
|
|
|
|
format: 'umd',
|
|
|
|
globals,
|
|
|
|
name: 'bootstrap'
|
|
|
|
},
|
|
|
|
external,
|
|
|
|
plugins
|
2017-08-29 21:16:00 +02:00
|
|
|
}
|