forked from Hacker0x01/react-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
43 lines (39 loc) · 1.15 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
import fs from "fs";
import path from "path";
import nodeResolve from "rollup-plugin-node-resolve";
import babel from "rollup-plugin-babel";
import commonjs from "rollup-plugin-commonjs";
import { list as babelHelpersList } from "@babel/helpers";
import pkg from "./package.json";
// it's important to mark all subpackages of data-fns as externals
// see https://github.com/Hacker0x01/react-datepicker/issues/1606
const dateFnsDirs = fs
.readdirSync(path.join(".", "node_modules", "date-fns"))
.map(d => `date-fns/${d}`);
const config = {
output: {
format: process.env.BABEL_ENV
},
plugins: [
nodeResolve({
mainFields: ["module"],
extensions: [".js", ".jsx"]
}),
babel({
exclude: "node_modules/**",
plugins: [
"@babel/plugin-external-helpers",
"@babel/plugin-proposal-class-properties"
],
runtimeHelpers: true,
externalHelpersWhitelist: babelHelpersList.filter(
helperName => helperName !== "asyncGenerator"
)
}),
commonjs()
],
external: Object.keys(pkg.dependencies)
.concat(Object.keys(pkg.peerDependencies))
.concat(dateFnsDirs)
};
export default config;