-
Notifications
You must be signed in to change notification settings - Fork 239
/
rollup.config.js
92 lines (88 loc) · 1.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// https://open-wc.org/building/building-rollup.html#configuration
import { createSpaConfig } from '@open-wc/building-rollup';
import merge from 'deepmerge';
import path from 'path';
import cpy from 'rollup-plugin-cpy';
import postcss from 'rollup-plugin-postcss';
const baseConfig = createSpaConfig({
developmentMode: process.env.ROLLUP_WATCH === 'true',
injectServiceWorker: false,
});
export default merge(baseConfig, {
input: path.resolve(__dirname, 'index.html'),
context: 'window',
output: {
sourcemap: false,
},
plugins: [
postcss(),
cpy({
files: [
path.join('demo', 'vendor.js'),
],
dest: 'dist',
options: {
parents: false,
},
}),
cpy({
files: [
path.join('demo', 'models', '*.json'),
],
dest: path.join('dist', 'models'),
options: {
parents: false,
},
}),
],
});
// const config = createCompatibilityConfig({
// input: path.resolve(__dirname, 'index.html'),
// context: 'window',
// indexHTMLPlugin: {
// minify: {
// minifyJS: true,
// removeComments: true
// }
// }
// });
//
// // export default config;
//
// config[0].context = 'window';
// config[1].context = 'window';
//
// export default [
// {
// ...config[0],
// plugins: [
// ...config[0].plugins,
// postcss()
// ]
// },
// {
// ...config[1],
// plugins: [
// ...config[1].plugins,
// postcss(),
// cpy({
// files: [
// path.join('demo', 'vendor.js'),
// ],
// dest: 'dist',
// options: {
// parents: false,
// },
// }),
// cpy({
// files: [
// path.join('demo', 'models', '*.json'),
// ],
// dest: path.join('dist', 'models'),
// options: {
// parents: false,
// },
// }),
// ],
// },
// ];