-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
80 lines (71 loc) · 1.5 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
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import terser from "@rollup/plugin-terser";
import pkg from "./package.json";
const banner = `/*!
* vue-reactive-persisted v${pkg.version}
* (c) ${new Date().getFullYear()} Eliott Vincent
* @license MIT
*/`;
const configs = [
{
input: "src/index.js",
file: "dist/vue-reactive-persisted.esm-browser.js",
format: "es"
},
{
input: "src/index.js",
file: "dist/vue-reactive-persisted.esm-bundler.js",
format: "es"
},
{
input: "src/index.cjs.js",
file: "dist/vue-reactive-persisted.global.js",
format: "iife",
minify: true
},
{
input: "src/index.cjs.js",
file: "dist/vue-reactive-persisted.cjs.js",
format: "cjs",
env: "development"
}
];
function createEntries() {
return configs.map(config => {
return createEntry(config);
});
}
function createEntry(config) {
const isGlobalBuild = config.format === "iife";
const c = {
external: ["vue"],
input: config.input,
plugins: [
resolve(),
commonjs()
],
output: {
banner,
file: config.file,
format: config.format,
exports: "auto",
globals: {
vue: "Vue"
}
},
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg);
}
}
};
if (isGlobalBuild) {
c.output.name = "Persist";
}
if (config.minify) {
c.plugins.push(terser());
}
return c;
}
export default createEntries();