-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile.ts
46 lines (41 loc) · 1.63 KB
/
compile.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
import { build, type Plugin } from 'esbuild';
import postcss from 'esbuild-postcss';
import { readdirSync } from 'node:fs';
const cssImportPlugin: Plugin = {
name: 'css-import',
setup(builder) {
// eslint-disable-next-line unicorn/prevent-abbreviations
builder.onLoad({ filter: /\.css$/ }, async (args) => {
if (args.with.type === 'css') {
const result = await build({
bundle: true,
entryPoints: [args.path],
minify: builder.initialOptions.minify,
plugins: [postcss()],
write: false,
});
return { contents: result.outputFiles[0].text, loader: 'text' };
}
});
},
};
const scripts = readdirSync('scripts')
.filter((fileOrDirectory) => fileOrDirectory !== 'tsconfig.json')
.map((fileOrDirectory) =>
fileOrDirectory.endsWith('.ts') ? `scripts/${fileOrDirectory}` : `scripts/${fileOrDirectory}/${fileOrDirectory}.ts`,
);
for (const script of scripts)
void build({
entryPoints: [script],
outdir: 'dist',
minify: true,
bundle: true,
sourcemap: 'inline',
plugins: [cssImportPlugin],
banner: {
js: `// <nowiki>\n// Note: This script was compiled and minified from TypeScript. For a more readable version, see https://github.com/Eejit43/wikipedia-scripts/blob/main/${script}\n`,
},
footer: { js: '\n// </nowiki>' },
});
// eslint-disable-next-line no-console
console.log(`Successfully compiled ${scripts.length} script${scripts.length === 1 ? '' : 's'}!`);