-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.ts
88 lines (79 loc) · 1.99 KB
/
build.ts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env node
import { build, context, type BuildOptions, type PluginBuild } from 'esbuild';
import { execSync } from 'node:child_process';
import { cpSync, existsSync, mkdirSync } from 'node:fs';
import { fileURLToPath } from 'node:url';
import { parseArgs } from 'node:util';
const {
values: { mode = 'build' },
} = parseArgs({
options: {
mode: { short: 'm', type: 'string', default: 'build' },
},
strict: false,
allowPositionals: true,
});
const outdir = 'build';
if (!existsSync('build')) {
mkdirSync('build');
}
cpSync('system', 'build/system', { recursive: true });
const shared_config: BuildOptions = {
target: 'es2022',
keepNames: true,
bundle: true,
format: 'esm',
platform: 'browser',
};
const lib_config: BuildOptions & { entryPoints: { in: string; out: string }[] } = {
...shared_config,
entryPoints: [],
outdir: outdir + '/system/lib',
};
for (const specifier of ['@zenfs/core', 'utilium', 'chalk', '@zenfs/core/path']) {
lib_config.entryPoints.push({
in: fileURLToPath(import.meta.resolve(specifier)),
out: specifier,
});
}
const config: BuildOptions = {
...shared_config,
entryPoints: ['src/index.ts', 'src/index.html', 'src/styles.css'],
outdir,
loader: {
'.html': 'copy',
},
sourcemap: true,
logOverride: {
'direct-eval': 'info',
},
plugins: [
{
name: 'build-libs',
setup({ onStart }: PluginBuild): void | Promise<void> {
onStart(async () => {
await build(lib_config);
execSync('npx make-index build/system -o build/index.json -q', { stdio: 'inherit' });
});
},
},
],
};
switch (mode) {
case 'watch': {
const ctx = await context(config);
console.log('Watching for changes...');
await ctx.watch();
break;
}
case 'dev': {
const ctx = await context(config);
await ctx.watch();
const { host, port } = await ctx.serve({ servedir: outdir });
console.log(`Development server started at http://${['127.0.0.1', '0.0.0.0'].includes(host) ? 'localhost' : host}:${port}`);
break;
}
case 'build':
default:
await build(config);
}