forked from transloadit/uppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-bundle.mjs
60 lines (52 loc) · 1.52 KB
/
build-bundle.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env node
import fs from 'node:fs/promises'
import chalk from 'chalk'
import esbuild from 'esbuild'
const UPPY_ROOT = new URL('../', import.meta.url)
const PACKAGES_ROOT = new URL('./packages/', UPPY_ROOT)
function buildBundle (srcFile, bundleFile, { minify = true, standalone = '', plugins, target, format } = {}) {
return esbuild.build({
bundle: true,
sourcemap: true,
entryPoints: [srcFile],
outfile: bundleFile,
platform: 'browser',
minify,
keepNames: target !== 'es5',
plugins,
tsconfigRaw: '{}',
target,
format,
}).then(() => {
if (minify) {
console.info(chalk.green(`✓ Built Minified Bundle [${standalone}]:`), chalk.magenta(bundleFile))
} else {
console.info(chalk.green(`✓ Built Bundle [${standalone}]:`), chalk.magenta(bundleFile))
}
})
}
await fs.mkdir(new URL('./uppy/dist', PACKAGES_ROOT), { recursive: true })
const methods = [
buildBundle(
'./packages/uppy/src/bundle.ts',
'./packages/uppy/dist/uppy.min.mjs',
{ standalone: 'Uppy (ESM)', format: 'esm' },
),
buildBundle(
'./packages/uppy/bundle.mjs',
'./packages/uppy/dist/uppy.min.js',
{ standalone: 'Uppy', format: 'iife' },
),
]
// Add BUNDLE-README.MD
methods.push(
fs.copyFile(
new URL('./BUNDLE-README.md', UPPY_ROOT),
new URL('./uppy/dist/README.md', PACKAGES_ROOT),
),
)
await Promise.all(methods).then(() => {
console.info(chalk.yellow('✓ JS bundles 🎉'))
}, (err) => {
console.error(chalk.red('✗ Error:'), chalk.red(err.message))
})