-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathrollup.config.ts
77 lines (68 loc) · 1.88 KB
/
rollup.config.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
import { readFileSync } from 'node:fs';
import { RollupOptions, OutputOptions, Plugin, ModuleFormat } from 'rollup';
import esbuildPlugin from 'rollup-plugin-esbuild';
import dtsPlugin from 'rollup-plugin-dts';
import { __dirname, distPath, getPkgJSON, resolve } from './scripts/utils';
const pkg = getPkgJSON();
const inputPath = resolve('src/index.ts');
const sourceMap = process.env.SOURCE_MAP === 'true';
const dts = process.env.DTS === 'true';
export default main();
function main() {
const configs = [buildConfig('esm'), buildConfig('cjs')];
if (dts) {
configs.push(buildConfig('dts'));
}
return configs;
}
function buildConfig(format: ModuleFormat | 'dts'): RollupOptions {
const isDts = format === 'dts';
const output: OutputOptions = {
file: resolveOutput(format, isDts),
format: isDts ? 'es' : format,
name: pkg.name,
exports: 'named',
indent: false,
sourcemap: isDts ? false : sourceMap,
};
const plugins: Plugin[] = [];
if (isDts) {
plugins.push(
dtsPlugin({
tsconfig: resolve('tsconfig.json'),
}),
patchTypePlugin([resolve('global.d.ts')]),
);
} else {
plugins.push(
esbuildPlugin({
tsconfig: resolve('tsconfig.json'),
sourceMap: output.sourcemap as boolean,
target: 'es2015',
minify: true,
}),
);
}
return {
input: inputPath,
output,
plugins,
};
}
function resolveOutput(format: string, isDts?: boolean) {
return resolve(distPath, `${pkg.name}${isDts ? '.d.ts' : `.${format}.js`}`);
}
function patchTypePlugin(files: string[]): Plugin {
return {
name: 'patch-type',
renderChunk: (code) =>
`${files
.map(
(file) =>
`// ${file.replace(__dirname, '')}\n${readFileSync(
file,
).toString()}\n// ${file.replace(__dirname, '')} end`,
)
.join('\n')}\n${code}`,
};
}