-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.mjs
88 lines (77 loc) · 2.43 KB
/
rollup.config.mjs
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
86
87
88
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import nodeResolve from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import typescript from '@rollup/plugin-typescript';
import fs from 'fs-extra';
import path from 'path';
import packageJson from './package.json' with { type: 'json' };
const extensions = ['.js', '.ts'];
const outputDir = '.';
function outputs(baseName) {
return [
{
file: path.join(outputDir, baseName + '.mjs'),
format: 'esm',
sourcemap: true,
},
{
file: path.join(outputDir, baseName + '.cjs'),
format: 'cjs',
sourcemap: true,
},
];
}
function commonPlugins() {
return [nodeResolve({ extensions, preferBuiltins: true }), commonjs({ defaultIsModuleExports: true }), json()];
}
/**
*
* @returns {import('rollup').Plugin}
*/
function moveFiles(from, to) {
return {
name: 'move-files',
async closeBundle() {
// if (!(await fs.exists(from))) {
// return;
// }
await fs.copy(from, to, { errorOnExist: false, overwrite: true, preserveTimestamps: true });
await fs.rm(from, { recursive: true });
},
};
}
/** @type {import('rollup').RollupOptions} */
const main = {
input: './src/main/index.ts',
output: outputs('main/index'),
external: [/\/node_modules\//, '@backtrace/node'],
plugins: [
typescript({ tsconfig: './tsconfig.main.json' }),
replace({
BACKTRACE_AGENT_NAME: packageJson.name,
BACKTRACE_AGENT_VERSION: packageJson.version,
preventAssignment: true,
}),
moveFiles('./main/__types', '.'),
...commonPlugins(),
],
};
/** @type {import('rollup').RollupOptions} */
const preload = {
input: './src/main/preload.ts',
output: outputs('main/preload'),
external: [/\/node_modules\//, '@backtrace/node'],
plugins: [typescript({ tsconfig: './tsconfig.main.json' }), moveFiles('./main/__types', '.'), ...commonPlugins()],
};
/** @type {import('rollup').RollupOptions} */
const renderer = {
input: './src/renderer/index.ts',
output: outputs('renderer/index'),
plugins: [
typescript({ tsconfig: './tsconfig.renderer.json' }),
moveFiles('./renderer/__types', '.'),
...commonPlugins(),
],
};
export default [main, preload, renderer];