Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
vendor /
twbs /
bootstrap /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
banner.mjs
620
B
-rw-r--r--
2024-02-14 08:50
build-plugins.mjs
2.83
KB
-rw-r--r--
2024-02-14 08:50
change-version.mjs
2.73
KB
-rw-r--r--
2024-02-14 08:50
generate-sri.mjs
1.7
KB
-rw-r--r--
2024-02-14 08:50
postcss.config.mjs
311
B
-rw-r--r--
2024-02-14 08:50
rollup.config.mjs
1.43
KB
-rw-r--r--
2024-02-14 08:50
vnu-jar.mjs
1.9
KB
-rw-r--r--
2024-02-14 08:50
zip-examples.mjs
2.77
KB
-rw-r--r--
2024-02-14 08:50
Save
Rename
import path from 'node:path' import process from 'node:process' import { fileURLToPath } from 'node:url' import { babel } from '@rollup/plugin-babel' import { nodeResolve } from '@rollup/plugin-node-resolve' import replace from '@rollup/plugin-replace' import banner from './banner.mjs' const __dirname = path.dirname(fileURLToPath(import.meta.url)) const BUNDLE = process.env.BUNDLE === 'true' const ESM = process.env.ESM === 'true' let destinationFile = `bootstrap${ESM ? '.esm' : ''}` const external = ['@popperjs/core'] 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 = { '@popperjs/core': 'Popper' } if (BUNDLE) { destinationFile += '.bundle' // Remove last entry in external array to bundle Popper external.pop() delete globals['@popperjs/core'] plugins.push( replace({ 'process.env.NODE_ENV': '"production"', preventAssignment: true }), nodeResolve() ) } const rollupConfig = { input: path.resolve(__dirname, `../js/index.${ESM ? 'esm' : 'umd'}.js`), output: { banner: banner(), file: path.resolve(__dirname, `../dist/js/${destinationFile}.js`), format: ESM ? 'esm' : 'umd', globals, generatedCode: 'es2015' }, external, plugins } if (!ESM) { rollupConfig.output.name = 'bootstrap' } export default rollupConfig