-
Notifications
You must be signed in to change notification settings - Fork 12
/
rollup.config.js
48 lines (45 loc) · 1.21 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
/* global process:readonly */
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import replace from "@rollup/plugin-replace";
import { babel } from "@rollup/plugin-babel";
import scss from "rollup-plugin-scss";
import serve from "rollup-plugin-serve";
import livereload from "rollup-plugin-livereload";
const outputFolder = "public";
const watching = process.env.ROLLUP_WATCH === "true";
const open = process.env.START_BROWSER === "true";
const environment = (watching && "development") || "production";
export default {
input: "src/index.js",
output: {
file: `${outputFolder}/app.js`,
format: "iife",
sourcemap: true,
},
plugins: [
resolve({ browser: true }),
commonjs({
include: "node_modules/**",
}),
replace({
"process.env.NODE_ENV": JSON.stringify(environment),
preventAssignment: true,
}),
babel({ babelHelpers: "bundled" }),
scss({sourceMap: true}),
].concat(
watching
? [
serve({
contentBase: outputFolder,
port: 10001,
verbose: true,
open,
historyApiFallback: true,
}),
livereload(),
]
: []
),
};