-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
109 lines (106 loc) · 2.79 KB
/
rollup.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
104
105
106
107
108
109
const path = require('path');
const { nodeResolve } = require("@rollup/plugin-node-resolve");
const { terser } = require("rollup-plugin-terser");
const polyfills = require('rollup-plugin-node-polyfills');
const commonjs = require('@rollup/plugin-commonjs');
const { babel } = require("@rollup/plugin-babel");
const typescript = require('@rollup/plugin-typescript');
const pkg = require('./package.json');
const external = ['lodash', '@paychex/core'];
const output = {
format: "umd",
name: pkg.name,
esModule: false,
exports: "named",
sourcemap: true,
banner: `/*! ${pkg.name} v${pkg.version} */`,
sourcemapPathTransform: (relativeSourcePath, sourcemapPath) => {
return `${pkg.name}/${path.relative(path.resolve('.'), path.resolve(path.dirname(sourcemapPath), relativeSourcePath))}`;
},
globals: {
'lodash': '_',
'@paychex/core': '@paychex/core',
},
paths: {
'lodash': 'lodash',
'@paychex/core': '@paychex/core',
}
};
module.exports = [
{
// UMD
external,
input: 'index.ts',
context: 'globalThis',
plugins: [
nodeResolve({
browser: true,
preferBuiltins: false,
}),
commonjs({
include: /node_modules/,
}),
typescript({
tsconfig: './tsconfig.json',
}),
babel({
babelHelpers: "bundled",
}),
polyfills(),
],
output: [{
...output,
plugins: [terser()],
file: pkg.browser.replace('.js', '.min.js'),
}, {
...output,
file: pkg.browser,
}],
},
// ESM
{
context: 'globalThis',
treeshake: false,
input: 'index.ts',
external,
plugins: [
typescript({
tsconfig: './tsconfig.json',
}),
nodeResolve(),
commonjs({
include: /node_modules/,
})
],
output: {
file: pkg.module,
format: "esm",
exports: "named",
sourcemap: true,
banner: `/*! ${pkg.name} v${pkg.version} */`,
},
},
// CJS
{
context: 'globalThis',
treeshake: false,
input: 'index.ts',
external,
plugins: [
typescript({
tsconfig: './tsconfig.json',
}),
nodeResolve(),
commonjs({
include: /node_modules/,
})
],
output: {
file: pkg.main,
format: "cjs",
exports: "named",
sourcemap: true,
banner: `/*! ${pkg.name} v${pkg.version} */`,
},
},
];