-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrollup.config.js
61 lines (59 loc) · 1.58 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
import resolve from '@rollup/plugin-node-resolve';
import babel from 'rollup-plugin-babel';
import { terser } from 'rollup-plugin-terser';
import minifyHTML from 'rollup-plugin-minify-html-literals';
import strip from '@rollup/plugin-strip';
import versionInjector from 'rollup-plugin-version-injector';
// eslint-disable-next-line no-unused-vars
const { dependencies } = require('./package.json');
export default [
{
input: './index.js',
output: [
{
file: 'dist/fore.js',
format: 'es',
sourcemap: true,
},
],
plugins: [
versionInjector(),
resolve(),
babel({
babelrc: false,
plugins: [
// Tell babel to accept the `static READONLY_DEFAULT = false;` properties found in some places.
// TODO: reconsider whether that is a good idea.
// eslint-disable-next-line global-require
[require('@babel/plugin-proposal-class-properties'), { loose: true }],
],
}),
strip(),
minifyHTML(),
terser(),
],
},
{
input: './index.js',
output: [
{
file: 'dist/fore-dev.js',
format: 'es',
sourcemap: true,
},
],
plugins: [
versionInjector(),
resolve(),
babel({
babelrc: false,
plugins: [
// Tell babel to accept the `static READONLY_DEFAULT = false;` properties found in some places.
// eslint-disable-next-line global-require
[require('@babel/plugin-proposal-class-properties'), { loose: true }],
],
}),
terser(),
],
},
];