twbs--bootstrap/build/build-plugins.js

184 lines
4.6 KiB
JavaScript
Raw Normal View History

#!/usr/bin/env node
/*!
* Script to build our plugins to use them separately.
2021-01-07 10:12:53 +00:00
* Copyright 2020-2021 The Bootstrap Authors
* Copyright 2020-2021 Twitter, Inc.
2020-06-16 18:41:47 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
'use strict'
2019-02-26 11:20:34 +00:00
const path = require('path')
const rollup = require('rollup')
const { babel } = require('@rollup/plugin-babel')
2019-02-26 11:20:34 +00:00
const banner = require('./banner.js')
2020-06-19 08:17:01 +00:00
const rootPath = path.resolve(__dirname, '../js/dist/')
const plugins = [
babel({
2019-02-26 11:20:34 +00:00
// Only transpile our source code
exclude: 'node_modules/**',
// Include the helpers in each file, at most one copy of each
babelHelpers: 'bundled'
})
]
const bsPlugins = {
2018-07-25 09:29:16 +00:00
Data: path.resolve(__dirname, '../js/src/dom/data.js'),
EventHandler: path.resolve(__dirname, '../js/src/dom/event-handler.js'),
2018-07-25 09:29:16 +00:00
Manipulator: path.resolve(__dirname, '../js/src/dom/manipulator.js'),
SelectorEngine: path.resolve(__dirname, '../js/src/dom/selector-engine.js'),
Alert: path.resolve(__dirname, '../js/src/alert.js'),
Base: path.resolve(__dirname, '../js/src/base-component.js'),
Button: path.resolve(__dirname, '../js/src/button.js'),
Carousel: path.resolve(__dirname, '../js/src/carousel.js'),
Collapse: path.resolve(__dirname, '../js/src/collapse.js'),
Dropdown: path.resolve(__dirname, '../js/src/dropdown.js'),
Modal: path.resolve(__dirname, '../js/src/modal.js'),
Offcanvas: path.resolve(__dirname, '../js/src/offcanvas.js'),
Popover: path.resolve(__dirname, '../js/src/popover.js'),
ScrollSpy: path.resolve(__dirname, '../js/src/scrollspy.js'),
Tab: path.resolve(__dirname, '../js/src/tab.js'),
Toast: path.resolve(__dirname, '../js/src/toast.js'),
Tooltip: path.resolve(__dirname, '../js/src/tooltip.js')
}
2018-07-25 09:29:16 +00:00
const defaultPluginConfig = {
external: [
bsPlugins.Data,
bsPlugins.Base,
2018-07-25 09:29:16 +00:00
bsPlugins.EventHandler,
bsPlugins.SelectorEngine
2018-07-25 09:29:16 +00:00
],
globals: {
[bsPlugins.Data]: 'Data',
[bsPlugins.Base]: 'Base',
2018-07-25 09:29:16 +00:00
[bsPlugins.EventHandler]: 'EventHandler',
[bsPlugins.SelectorEngine]: 'SelectorEngine'
2018-07-25 09:29:16 +00:00
}
}
const getConfigByPluginKey = pluginKey => {
switch (pluginKey) {
case 'Alert':
case 'Offcanvas':
case 'Tab':
return defaultPluginConfig
2018-07-25 09:29:16 +00:00
case 'Base':
case 'Button':
case 'Carousel':
case 'Collapse':
case 'Modal':
case 'ScrollSpy': {
const config = Object.assign(defaultPluginConfig)
config.external.push(bsPlugins.Manipulator)
config.globals[bsPlugins.Manipulator] = 'Manipulator'
return config
}
case 'Dropdown':
case 'Tooltip': {
const config = Object.assign(defaultPluginConfig)
config.external.push(bsPlugins.Manipulator, '@popperjs/core')
config.globals[bsPlugins.Manipulator] = 'Manipulator'
config.globals['@popperjs/core'] = 'Popper'
return config
}
case 'Popover':
return {
external: [
bsPlugins.Data,
bsPlugins.SelectorEngine,
bsPlugins.Tooltip
],
globals: {
[bsPlugins.Data]: 'Data',
[bsPlugins.SelectorEngine]: 'SelectorEngine',
[bsPlugins.Tooltip]: 'Tooltip'
}
}
case 'Toast':
return {
external: [
bsPlugins.Data,
bsPlugins.Base,
bsPlugins.EventHandler,
bsPlugins.Manipulator
],
globals: {
[bsPlugins.Data]: 'Data',
[bsPlugins.Base]: 'Base',
[bsPlugins.EventHandler]: 'EventHandler',
[bsPlugins.Manipulator]: 'Manipulator'
}
2018-07-25 09:29:16 +00:00
}
2018-11-14 11:02:18 +00:00
default:
return {
external: []
2018-11-14 11:02:18 +00:00
}
}
2018-07-25 09:29:16 +00:00
}
2020-05-02 13:56:23 +00:00
const utilObjects = new Set([
'Util',
'Sanitizer',
'Backdrop'
2020-05-02 13:56:23 +00:00
])
2020-05-02 13:56:23 +00:00
const domObjects = new Set([
'Data',
'EventHandler',
'Manipulator',
'SelectorEngine'
2020-05-02 13:56:23 +00:00
])
const build = async plugin => {
2018-07-25 09:29:16 +00:00
console.log(`Building ${plugin} plugin...`)
2019-02-26 11:20:34 +00:00
const { external, globals } = getConfigByPluginKey(plugin)
const pluginFilename = path.basename(bsPlugins[plugin])
let pluginPath = rootPath
2020-05-02 13:56:23 +00:00
if (utilObjects.has(plugin)) {
pluginPath = `${rootPath}/util/`
}
2020-05-02 13:56:23 +00:00
if (domObjects.has(plugin)) {
pluginPath = `${rootPath}/dom/`
}
const bundle = await rollup.rollup({
2018-09-26 13:05:27 +00:00
input: bsPlugins[plugin],
plugins,
external
})
await bundle.write({
banner: banner(pluginFilename),
format: 'umd',
name: plugin,
sourcemap: true,
globals,
generatedCode: 'es2015',
file: path.resolve(__dirname, `${pluginPath}/${pluginFilename}`)
})
console.log(`Building ${plugin} plugin... Done!`)
}
const main = async () => {
try {
await Promise.all(Object.keys(bsPlugins).map(plugin => build(plugin)))
} catch (error) {
console.error(error)
process.exit(1)
}
2018-09-26 13:05:27 +00:00
}
main()