-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
43 lines (40 loc) · 1.1 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 serve from "rollup-plugin-serve";
import livereload from "rollup-plugin-livereload";
import babel from '@rollup/plugin-babel';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import replace from '@rollup/plugin-replace';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import dotenv from 'dotenv';
import styles from "rollup-plugin-styles";
dotenv.config();
const extensions = [".js", ".jsx", ".ts", ".tsx"];
export default {
input: "lib/index.js",
output: {
file: "dist/bundle.js",
format: "es",
sourcemap: true,
},
plugins: [
styles(),
peerDepsExternal(),
nodeResolve({extensions}),
replace({
'process.env.NODE_ENV': JSON.stringify( 'production' ),
preventAssignment: true,
}),
babel({ extensions, include: ['lib/**/*'], babelHelpers: 'runtime' }),
commonjs({
include: 'node_modules/**',
}),
serve({
open: true,
verbose: true,
contentBase: ["", "public"],
host: "localhost",
port: 3001,
}),
livereload({ watch: "dist" }),
]
};