-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.ts
85 lines (72 loc) · 1.86 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
import { build, stop } from 'https://deno.land/x/[email protected]/mod.js';
import http from 'https://deno.land/x/[email protected]/index.js';
import version from './version.ts';
import p from './package.json' with { type: 'json' };
import d from './deno.json' with { type: 'json' };
const { writeTextFile } = Deno;
const author = 'Alexander Elias';
const license = 'MIT';
const names = [
'access',
'connect',
'decrypt',
'encrypt',
'hash',
'identifier',
'jwt',
'password',
'post',
'random',
'secret',
'username',
];
const banner = `
/*
license: ${license}
version: ${version}
author: ${author}
repository: https://github.com/xeaone/tool
*/
`;
p.version = version;
d.version = version;
await writeTextFile('package.json', JSON.stringify(p, null, ' '));
await writeTextFile('deno.json', JSON.stringify(d, null, ' '));
await writeTextFile(
'index.ts',
`${banner}
${names.map((name) => `export * from './${name}/mod.ts';`).join('\n')}
${names.map((name) => `import ${name} from './${name}/mod.ts';`).join('\n')}
export default {
${names.map((name) => `${name},`).join('\n\t')}
}
`,
);
await writeTextFile(
'module/index.js',
`${banner}
${names.map((name) => `export * from './${name}/mod.js';`).join('\n')}
${names.map((name) => `import ${name} from './${name}/mod.js';`).join('\n')}
export default {
${names.map((name) => `${name},`).join('\n\t')}
}
`,
);
await Promise.all(names.map((name) =>
build({
color: true,
bundle: true,
minify: false,
sourcemap: true,
treeShaking: true,
banner: { js: banner },
plugins: [http],
format: 'esm',
target: 'esnext',
logLevel: 'verbose',
// platform: 'browser',
outdir: `module/${name}/`,
entryPoints: [`${name}/mod.ts`],
})
));
stop();