forked from denysdovhan/vacuum-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
executable file
·62 lines (59 loc) · 1.38 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
/* eslint-env node */
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import babel from '@rollup/plugin-babel';
import image from '@rollup/plugin-image';
import postcss from 'rollup-plugin-postcss';
import postcssPresetEnv from 'postcss-preset-env';
import postcssLit from 'rollup-plugin-postcss-lit';
import { terser } from 'rollup-plugin-terser';
import minifyLiterals from 'rollup-plugin-minify-html-literals';
import serve from 'rollup-plugin-serve';
const IS_DEV = process.env.ROLLUP_WATCH;
const serverOptions = {
contentBase: ['./dist'],
host: 'localhost',
port: 5000,
allowCrossOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
};
export default {
input: 'src/vacuum-card.js',
output: {
dir: 'dist',
format: 'es',
},
plugins: [
nodeResolve(),
commonjs(),
json(),
babel({
babelHelpers: 'runtime',
exclude: 'node_modules/**',
}),
postcss({
plugins: [
postcssPresetEnv({
stage: 1,
features: {
'nesting-rules': true,
},
}),
],
extract: false,
}),
postcssLit(),
image(),
IS_DEV && serve(serverOptions),
!IS_DEV && minifyLiterals(),
!IS_DEV &&
terser({
output: {
comments: false,
},
}),
],
};