-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrollup.config.js
65 lines (62 loc) · 1.55 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
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import fs from "fs";
import { terser } from "rollup-plugin-terser";
import { getBabelOutputPlugin } from "@rollup/plugin-babel";
export default [
{
input: "./node_modules/date-object/dist/cjs/date-object.es6.js",
output: [
{
file: "dist/index.js",
format: "cjs",
plugins: [
getBabelOutputPlugin({
presets: [
"@babel/preset-env",
{ plugins: ["transform-class-properties"] },
],
}),
terser(),
],
exports: "named",
},
{
file: "dist/index.module.js",
format: "es",
plugins: [
getBabelOutputPlugin({
presets: [
"@babel/preset-env",
{ plugins: ["transform-class-properties"] },
],
}),
terser(),
],
exports: "named",
},
],
plugins: [resolve(), commonjs()],
},
...build("calendars"),
...build("locales"),
];
function build(path) {
const nodePath = `./node_modules/date-object/${path}`;
const array = fs
.readdirSync(`${nodePath}/cjs`)
.filter((file) => file.endsWith(".js"))
.map((file) => file.replace(/\.js$/, ""));
return array.map((name) => ({
input: `${nodePath}/cjs/${name}.js`,
output: [
{
file: `${path}/${name}.js`,
format: "cjs",
exports: "default",
plugins: [terser()],
},
],
plugins: [commonjs()],
}));
}