-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-test.cjs
54 lines (52 loc) · 1.21 KB
/
build-test.cjs
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
const esbuild = require('esbuild');
const build = async () => {
try {
await Promise.all([
esbuild.build({
entryPoints: ['./mocks/client/extension.ts'],
bundle: true,
outfile: 'dist/extension.js',
target: 'ESNext',
platform: 'node',
format: 'cjs',
loader: {
'.ts': 'ts'
},
external: [
'vscode',
]
}),
esbuild.build({
entryPoints: ['./mocks/server/index.ts'],
bundle: true,
outfile: 'dist/server.js',
globalName: 'miniscriptLanguageserver',
target: 'ESNext',
platform: 'node',
format: 'cjs',
loader: {
'.ts': 'ts'
},
external: [
'vscode-languageserver/browser'
]
}),
esbuild.build({
entryPoints: ['./tests/**/*.ts'],
bundle: false,
outdir: 'dist',
platform: 'node',
target: 'es6',
format: 'cjs',
sourcemap: true,
loader: {
'.ts': 'ts'
}
})
]);
} catch (err) {
console.error('Failed building project', { err });
process.exit(1);
}
};
build();