-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
rollup.config.js
98 lines (92 loc) · 2.58 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
import pkg from "./package.json" with {type: "json"};
import resolve from "@rollup/plugin-node-resolve";
import terser from "@rollup/plugin-terser";
import license from "rollup-plugin-license";
export default [
// pedigree-chart.js
{
input: "resources/js/modules/index.js",
output: [
{
name: "WebtreesPedigreeChart",
file: "resources/js/pedigree-chart-" + pkg.version + ".js",
format: "umd"
}
],
plugins: [
resolve(),
license({
banner: `
This file is part of the package magicsunday/<%= pkg.name %>.
For the full copyright and license information, please read the
LICENSE file that was distributed with this source code.
Generated: <%= moment().format('YYYY-MM-DD HH:mm:ss') %>
Version: <%= pkg.version %>`
})
]
},
{
input: "resources/js/modules/index.js",
output: [
{
name: "WebtreesPedigreeChart",
file: "resources/js/pedigree-chart-" + pkg.version + ".min.js",
format: "umd"
}
],
plugins: [
resolve(),
terser({
mangle: true,
compress: true,
module: true,
output: {
comments: false
}
}),
license({
banner: `
This file is part of the package magicsunday/<%= pkg.name %>.
For the full copyright and license information, please read the
LICENSE file that was distributed with this source code.
Generated: <%= moment().format('YYYY-MM-DD HH:mm:ss') %>
Version: <%= pkg.version %>`
})
]
},
// pedigree-chart-storage.js
{
input: "resources/js/modules/lib/storage.js",
output: [
{
name: "WebtreesPedigreeChart",
file: "resources/js/pedigree-chart-storage.js",
format: "umd"
}
],
plugins: [
resolve()
]
},
{
input: "resources/js/modules/lib/storage.js",
output: [
{
name: "WebtreesPedigreeChart",
file: "resources/js/pedigree-chart-storage.min.js",
format: "umd"
}
],
plugins: [
resolve(),
terser({
mangle: true,
compress: true,
module: true,
output: {
comments: false
}
})
]
}
];