-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathesbuild.config.mjs
More file actions
66 lines (58 loc) · 1.67 KB
/
esbuild.config.mjs
File metadata and controls
66 lines (58 loc) · 1.67 KB
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
import { build, context } from 'esbuild';
import { cpSync, existsSync, mkdirSync } from 'node:fs';
import { resolve } from 'node:path';
const watch = process.argv.includes('--watch');
const projectRoot = process.cwd();
const common = {
bundle: true,
sourcemap: true,
target: 'es2022',
platform: 'node',
format: 'cjs',
logLevel: 'info'
};
const copyStatic = () => {
const srcAssets = resolve(projectRoot, 'src/webview-ui/assets');
const dstAssets = resolve(projectRoot, 'dist/webview-ui/assets');
mkdirSync(resolve(projectRoot, 'dist/webview-ui'), { recursive: true });
if (existsSync(srcAssets)) {
cpSync(srcAssets, dstAssets, { recursive: true });
}
};
async function run() {
const extConfig = {
...common,
entryPoints: [resolve(projectRoot, 'src/extension/activate.ts')],
outfile: resolve(projectRoot, 'dist/extension/activate.js'),
external: ['vscode']
};
const webConfig = {
bundle: true,
sourcemap: true,
target: 'es2022',
platform: 'browser',
format: 'iife',
globalName: 'OfflineMarkdownViewerWebview',
entryPoints: [resolve(projectRoot, 'src/webview-ui/index.ts')],
outfile: resolve(projectRoot, 'dist/webview-ui/index.js'),
loader: {
'.css': 'css',
'.woff2': 'dataurl',
'.woff': 'dataurl',
'.ttf': 'dataurl'
},
logLevel: 'info'
};
if (watch) {
const [extCtx, webCtx] = await Promise.all([context(extConfig), context(webConfig)]);
await Promise.all([extCtx.watch(), webCtx.watch()]);
copyStatic();
return;
}
await Promise.all([build(extConfig), build(webConfig)]);
copyStatic();
}
run().catch((error) => {
console.error(error);
process.exitCode = 1;
});