forked from pyatyispyatil/flame-chart-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.npm.config.js
103 lines (93 loc) · 2.43 KB
/
rollup.npm.config.js
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { fileURLToPath } from 'node:url';
import terser from '@rollup/plugin-terser';
import typescript from '@rollup/plugin-typescript';
import builtins from 'rollup-plugin-node-builtins';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import fs from 'fs';
const pkg = JSON.parse(fs.readFileSync('./package.json').toString());
const name = 'flameChartJs';
const inputFileName = './src/index.ts';
const reactInputFileName = './src/react.ts';
const external = Object.keys(pkg.dependencies || {});
const basePlugins = [
resolve({
browser: true,
preferBuiltins: true,
}),
commonjs(),
typescript({ compilerOptions: { outDir: './dist' }, noForceEmit: true, tsconfig: './tsconfig.npm.json' }),
builtins(),
];
const plugins = basePlugins.concat(peerDepsExternal());
const reactConfig = {
plugins,
input: reactInputFileName,
external: [fileURLToPath(new URL('src/index.ts', import.meta.url)), ...external],
};
const indexPaths = (filePath) => {
if (filePath.endsWith('src/index.ts')) {
return pkg.main.replace('dist/', './');
}
return filePath;
};
const banner = `
/**
* @license
* author: ${pkg.author}
* ${pkg.name} v${pkg.version}
* Released under the ${pkg.license} license.
*/
`;
export default [
// Browser
{
plugins: basePlugins,
input: inputFileName,
output: [
{
banner,
name,
file: pkg.exports['.'].umd,
format: 'umd',
exports: 'named',
extend: true,
plugins: [terser()],
},
],
},
// ES React
{
...reactConfig,
output: [
{
banner,
file: pkg.exports['./react'].default,
format: 'es',
exports: 'named',
paths: indexPaths,
},
],
},
// JS
{
plugins,
input: inputFileName,
external,
output: [
{
banner,
file: pkg.exports['.'].cjs,
format: 'cjs',
exports: 'named',
},
{
banner,
file: pkg.exports['.'].default,
format: 'es',
exports: 'named',
},
],
},
];