generated from zakarialaoui10/ziko-addons-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
73 lines (65 loc) · 1.4 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
import resolve from "@rollup/plugin-node-resolve";
import commonjs from '@rollup/plugin-commonjs';
import terser from "@rollup/plugin-terser";
const Addon_name = "zextra";
const NamedExport = "Zextra";
const Author = "";
const banner = `
/*
Project: ${Addon_name}
Author: ${Author}
Date : ${new Date()}
*/
`;
const isProduction = process.env.NODE_ENV === "production";
const Target = process.env.TARGET;
const OUTPUT_NAME = Target === "index" ? `dist/zextra` : `dist/zextra-${Target}`
const inputs = {
index : "src/index.js",
ui : "src/ui/index.js",
canvas : "src/canvas/index.js",
svg : "src/svg/index.js"
}
const output = [
{
file: `${OUTPUT_NAME}.mjs`,
format: "es",
banner,
exports: "named",
},
{
file: `${OUTPUT_NAME}.js`,
format: "umd",
name: NamedExport,
banner,
exports: "named",
globals: {
ziko: "Ziko",
},
},
];
isProduction && output.push({
file: `${OUTPUT_NAME}.min.js`,
format: "umd",
name: NamedExport,
banner,
globals: {
ziko: "Ziko",
},
exports: "named",
plugins: [
terser({
output: {
comments: (node, { type, value }) =>
type === "comment2" && value.includes("Author"),
},
}),
],
},
)
export default {
input : inputs[Target],
output,
external: ["ziko"],
plugins: [resolve(), commonjs()],
};