-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcivet.loader.ts
63 lines (46 loc) · 1.49 KB
/
civet.loader.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
import { plugin, file, write } from 'bun';
import lodash from 'lodash';
await plugin({
name: 'AoC Civet loader',
async setup(builder) {
const { compile } = await import('@danielx/civet');
const utilsSrc = await file('./src/utils.civet').text();
const utilsExports = getExports(utilsSrc);
const lodashExports = Object.keys(lodash);
const autoDts = createAutoImportDts(utilsExports, lodashExports);
await write('./src/auto-import.d.ts', autoDts);
return builder.onLoad({ filter: /\.civet$/ }, async ({ path }) => {
let source = await file(path).text();
source =
`input from ./input.txt
{ ${utilsExports.join(', ')} } from ../utils.civet
{ ${lodashExports.join(', ')} } from lodash
` + source;
return {
contents: await compile(source),
loader: 'tsx',
};
});
},
});
function getExports(source: string) {
const regex = /export\s+\{.*?as\s+(\w+)\s*\}|\bexport\s+function\s+(\w+)/g;
const exports: string[] = [];
let match;
while ((match = regex.exec(source)) !== null) {
exports.push(match[1] || match[2]);
}
exports.push('memo');
return exports;
}
function createAutoImportDts(utilsExports: string[], lodashExports: string[]) {
return `import * as utils from "./utils.civet"
import lodash from "lodash"
declare global {
// Utils
${utilsExports.map((e) => ` const ${e}: typeof utils.${e}`).join(';\n')}
// Lodash
${lodashExports.map((e) => ` const ${e}: typeof lodash.${e}`).join(';\n')}
}
export {}`;
}