forked from henrygd/bigger-picture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
165 lines (159 loc) · 3.67 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import svelte from 'rollup-plugin-svelte'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { terser } from 'rollup-plugin-terser'
import size from 'rollup-plugin-size'
import modify from 'rollup-plugin-modify'
const production = !process.env.ROLLUP_WATCH
const terserOptions = {
ecma: 2015,
mangle: {
properties: {
regex:
/^(duration|easing|delay|activeItem|fragment|calculateDimensions|dirty|tick|preloadNext|opts|prev|next|close|loadImage|smallScreen|props|setResizeFunc)$/,
},
},
compress: {
booleans_as_integers: true,
pure_getters: true,
drop_console: true,
unsafe: true,
unsafe_arrows: true,
unsafe_comps: true,
unsafe_Function: true,
unsafe_math: true,
unsafe_symbols: true,
unsafe_methods: true,
unsafe_proto: true,
unsafe_regexp: true,
unsafe_undefined: true,
passes: 3,
},
}
/*
rm unneeded svelte stuff for vanilla scripts (hacky but saves a few bytes)
need to re-test / modify if svelte is updated
*/
const cleanSvelteWhitespace = {
markup: ({ content }) => {
const code = content
.replace(/(>)[\s]*([<{])/g, '$1$2')
.replace(/({[/:][a-z]+})[\s]*([<{])/g, '$1$2')
.replace(/({[#:][a-z]+ .+?})[\s]*([<{])/g, '$1$2')
.replace(/([>}])[\s]+(<|{[/#:][a-z][^}]*})/g, '$1$2')
return { code }
},
}
const findReplaceOptions = [
[/^\s*validate_store.+$|throw.+interpolate.+$/gm, ''],
['if (options.hydrate)', 'if (false)'],
['if (options.intro)', 'if (false)'],
[`, important ? 'important' : ''`, ''],
[/if \('props' in \$\$props.+;$/gm, ''],
[/\$\$self\.\$\$set = \$\$props => {\s+};$/gm, ''],
[
/if \(type === 'object'\) {(.|\n)+if \(type === 'number'\)/gm,
`if (type === 'number')`,
],
[': blank_object()', ': {}'],
['__svelte', '_bp'],
[`typeof window !== 'undefined'`, 'true'],
['window', 'globalThis'],
['const doc = get_root_for_style(node)', 'const doc = document'],
[/get_root_for_style\(node\),/g, 'document,'],
].map(([find, replace]) => modify({ find, replace }))
let config = [
{
input: 'src/demo/demo.js',
output: {
format: 'iife',
file: 'public/demo.js',
},
plugins: [
commonjs(),
svelte({
preprocess: [cleanSvelteWhitespace],
compilerOptions: {
dev: !production,
immutable: true,
css: false,
},
}),
resolve({ browser: true }),
...findReplaceOptions,
production && terser(terserOptions),
],
},
]
if (production) {
// remove unneeded setters in library
findReplaceOptions.push(
modify({ find: /^\sset .+{$\n\s+this.+[^}]+}/gm, replace: '' })
)
// unminified dist files
config.push({
input: 'src/bigger-picture.js',
output: [
{
format: 'es',
file: 'dist/bigger-picture.mjs',
},
{
format: 'umd',
name: 'BiggerPicture',
file: 'dist/bigger-picture.umd.js',
strict: false,
},
{
format: 'cjs',
name: 'BiggerPicture',
file: 'dist/bigger-picture.cjs',
strict: false,
exports: 'default',
},
],
plugins: [
commonjs(),
svelte({
preprocess: [cleanSvelteWhitespace],
compilerOptions: {
immutable: true,
css: false,
},
}),
resolve({ browser: true }),
...findReplaceOptions,
],
})
// minified dist files
config.push({
input: 'src/bigger-picture.js',
output: [
{
format: 'iife',
name: 'BiggerPicture',
file: 'dist/bigger-picture.min.js',
strict: false,
},
{
format: 'es',
file: 'dist/bigger-picture.min.mjs',
},
],
plugins: [
commonjs(),
svelte({
preprocess: [cleanSvelteWhitespace],
compilerOptions: {
immutable: true,
css: false,
},
}),
resolve({ browser: true }),
...findReplaceOptions,
terser(terserOptions),
size(),
],
})
}
export default config