-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrollup.config.js
53 lines (49 loc) · 1.52 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
import path from 'path';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import typescript from '@rollup/plugin-typescript';
import {
chromeExtension,
simpleReloader,
} from 'rollup-plugin-chrome-extension';
import { emptyDir } from 'rollup-plugin-empty-dir';
import zip from 'rollup-plugin-zip';
import replace from '@rollup/plugin-replace';
import { wasm } from '@rollup/plugin-wasm';
import postcss from 'rollup-plugin-postcss'
import json from '@rollup/plugin-json';
const isProduction = process.env.NODE_ENV === 'production';
export default {
input: 'src/manifest.json',
output: {
dir: 'dist',
format: 'esm',
chunkFileNames: path.join('chunks', '[name]-[hash].js'),
// sourcemap: 'inline'
},
plugins: [
json(),
postcss({
modules: true,
}),
wasm(),
commonjs(),
replace({
'process.env.NODE_ENV': isProduction
? JSON.stringify('production')
: JSON.stringify('development'),
preventAssignment: true,
}),
chromeExtension(),
// Adds a Chrome extension reloader during watch mode
simpleReloader(),
nodePolyfills(),
resolve(),
typescript(),
// Empties the output dir before a new build
emptyDir(),
// Outputs a zip file in ./releases
isProduction && zip({ dir: 'releases' }),
],
};