-
Notifications
You must be signed in to change notification settings - Fork 274
/
rollup.config.js
executable file
·63 lines (59 loc) · 1.25 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
// Rollup plugins
import babel from "@rollup/plugin-babel";
import { terser } from "rollup-plugin-terser";
import license from "rollup-plugin-license";
import pkjson from "./package.json";
import babelrc from "./.babelrc.json";
const banner = `/*!
* Proton v${pkjson.version}
* https://github.com/drawcall/Proton
*
* Copyright 2013-${new Date().getFullYear()}, drawcall
* Licensed under the MIT license
* http://www.opensource.org/licenses/mit-license
*
*/`;
const input = "src/index.js";
const isDev = process.env.NODE_ENV == "dev";
let rconfig;
if (isDev) {
rconfig = {
input,
output: {
file: "build/proton.js",
format: "umd",
name: "Proton",
sourcemap: true,
},
plugins: [
babel({
babelHelpers: "bundled",
compact: false,
babelrc: false,
...babelrc,
exclude: "node_modules/**",
}),
],
};
} else {
rconfig = {
input,
output: {
file: "build/proton.min.js",
format: "umd",
name: "Proton",
sourcemap: true,
},
plugins: [
babel({
exclude: "node_modules/**",
babelHelpers: "bundled",
babelrc: false,
...babelrc,
}),
terser(),
license({ banner }),
],
};
}
export default rconfig;