-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
99 lines (98 loc) · 2.81 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
import {nodeResolve} from "@rollup/plugin-node-resolve";
import commonJs from "@rollup/plugin-commonjs";
import {terser} from "rollup-plugin-terser";
import cleanup from 'rollup-plugin-cleanup';
import babel from '@rollup/plugin-babel';
const input = ["src/index.js"];
export default [
{
// UMD
input,
plugins: [
nodeResolve(),
commonJs(),
babel({
babelHelpers: "bundled",
exclude: '/node_modules/**',
babelrc: false,
presets: [["@babel/preset-env", {
corejs: 3,
modules: false,
useBuiltIns: "usage",
targets: "defaults"
}]]
}),
cleanup()
],
output: [{
file: `dist/hashmap.min.js`,
format: "umd",
name: "Mootable", // this is the name of the global object
esModule: false,
exports: "named",
sourcemap: true,
plugins: [terser()]
}, {
file: `dist/hashmap.js`,
format: "umd",
name: "Mootable", // this is the name of the global object
esModule: false,
exports: "named",
sourcemap: false,
},]
},
{
// UMD
input,
plugins: [
nodeResolve(),
commonJs(),
babel({
babelHelpers: "bundled",
exclude: '/node_modules/**',
babelrc: false,
presets: [["@babel/preset-env", {
corejs: 3,
useBuiltIns: "usage",
targets: "last 2 years and supports es6-module, not dead"
}]]
}),
cleanup({comments: 'some'}),
],
output: [{
file: `dist/hashmap.umd.min.js`,
format: "umd",
name: "Mootable", // this is the name of the global object
exports: "named",
esModule: true,
sourcemap: true,
plugins: [terser()]
}, {
file: `dist/hashmap.umd.js`,
format: "umd",
name: "Mootable", // this is the name of the global object
exports: "named",
esModule: true,
sourcemap: false,
},]
},
// ESM and CJS
{
input,
plugins: [nodeResolve(), cleanup({comments: 'all'})],
output: [
{
file: `dist/hashmap.mjs`,
format: "esm",
exports: "named",
sourcemap: false,
},
{
file: `dist/hashmap.cjs`,
format: "cjs",
exports: "named",
sourcemap: false,
},
],
},
];