-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.mjs
72 lines (64 loc) · 1.5 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
import fs from 'node:fs/promises';
import dts from 'rollup-plugin-dts';
import esbuild from 'rollup-plugin-esbuild';
const rawPackageJSON = await fs.readFile('package.json', { encoding: 'utf8' });
/** @type {import('./package.json')} */
const { name, version, main } = JSON.parse(rawPackageJSON);
const libOutputPath = main.replace(/\.[cm]?js$/, '');
const camelCaseName = name.replace(/-./g, (x) => x[1].toUpperCase());
/**
* @param {string} id
* @returns {boolean}
*/
const isExternal =
process.platform === 'win32'
? (/** @type {string} */ id) => !/^(([a-zA-Z]{1}\:\\)|[.\\])/.test(id)
: (/** @type {string} */ id) => !/^[./]/.test(id);
/**
* @param {import('rollup').RollupOptions} config
* @returns {import('rollup').RollupOptions}
*/
const bundle = (config) => ({
...config,
input: './src/index.ts',
external: isExternal
});
export default [
// Output for NodeJS
bundle({
plugins: [esbuild({ target: 'es6' })],
output: [
{
file: `${libOutputPath}.cjs`,
format: 'cjs',
sourcemap: false,
compact: false
},
{
file: `${libOutputPath}.mjs`,
format: 'esm',
sourcemap: false,
compact: false
}
]
}),
// Output for Typescript's .d.ts
bundle({
plugins: [dts()],
output: {
file: `${libOutputPath}.d.ts`,
format: 'es'
}
}),
// Output for browser
bundle({
plugins: [esbuild({ target: 'es5', minify: true })],
output: {
file: `./out/${name}-v${version}.js`,
format: 'iife',
name: camelCaseName,
sourcemap: true,
compact: true
}
})
];