-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
217 lines (198 loc) · 5.57 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import resolve from '@rollup/plugin-node-resolve'
import babel from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
import re from 'rollup-plugin-re'
import strip from '@rollup/plugin-strip'
import { uglify } from 'rollup-plugin-uglify'
import { sizeSnapshot } from 'rollup-plugin-size-snapshot'
import posthtml from 'rollup-plugin-posthtml-template'
import htmlinclude from 'posthtml-include'
import minifier from 'posthtml-minifier'
import url from '@rollup/plugin-url'
import json from '@rollup/plugin-json'
import postcss from 'rollup-plugin-postcss'
import postcssUrl from 'postcss-url'
const babelOptions = require('./babel.config')
const baseBuild = {
input: './src/index.js',
output: {
format: 'iife',
globals: { window: 'window' },
},
plugins: [
json(),
posthtml({
// include: '**/*.html',
template: true,
plugins: [
htmlinclude(),
minifier({
removeComments: true,
collapseWhitespace: true,
// we're unable to use the minifyCSS option while we're replacing strings in it
minifyCSS: false,
}),
],
}),
postcss({
inject: false,
// extract: true,
minimize: true,
plugins: [
postcssUrl({
url: 'inline', // enable inline assets using base64 encoding
maxSize: 10, // maximum file size to inline (in kilobytes)
fallback: 'copy', // fallback method to use if max size is exceeded
}),
],
}),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled',
extensions: ['.js', '.html', '.scss'],
...babelOptions,
}),
resolve({
extensions: ['.js'],
}),
commonjs({
include: 'node_modules/**',
}),
sizeSnapshot({}),
],
}
const minifiedOptions = (base) => {
const newOptions = { ...base }
newOptions.plugins = [...base.plugins, strip({ debugger: true }), uglify()]
return newOptions
}
const targetBuild = (target, opts = { prod: false }) => {
const base = opts.prod ? minifiedOptions(baseBuild) : baseBuild
const targetName = opts.prod
? `better-sharing-${target}-min`
: `better-sharing-${target}-debug`
const { holder, archetypes } = require(`./src/lib/platforms/${target}.json`)
const replacementRes = [
{
test: /\$\{_\.holder\.selector\}/g,
replace: holder.selector || '',
},
{
test: /(?<!\.)holder\.selector/g,
replace: JSON.stringify(holder.selector),
},
{
test: /(?<!\.)holder\.ancestorSelector/g,
replace: JSON.stringify(holder.ancestorSelector),
},
{
test: /(?<!_\.)holder\.classes/g,
replace: JSON.stringify(holder.classes),
},
]
Object.keys(archetypes).forEach((archType) => {
replacementRes.push({
test: new RegExp(`\\$\\{_\\.archetypes\\.${archType}\\.selector}`),
replace: archetypes[archType].selector || '',
})
// replacementRes.push({
// test: new RegExp(`\\$\\{_\\.archetypes\\.${archType}\\.styles}`),
// replace: archetypes[archType].styles || '',
// })
})
const newOptions = { ...base }
newOptions.output = {
...base.output,
name: 'betterSharing',
file: `packages/${target}/${targetName}.js`,
}
newOptions.plugins = [
re({
patterns: replacementRes,
}),
// replace any instance of our TARGET_PLATFORM within a string
re({
patterns: [
{
test: /\$\{process.env.TARGET_PLATFORM\}/g,
replace: target,
},
],
}),
// now replace any dynamic require calls with their ES counterparts
re({
patterns: [
{
test: /const ([\S]+) = require\((['"`])([^\)]+)\2\)/g,
replace: "import $1 from '$3'",
},
],
}),
...base.plugins,
]
return newOptions
}
const customBuild = (
opts = { prod: false, input: './index.js', output: {} }
) => {
const base = opts.prod ? minifiedOptions(baseBuild) : baseBuild
const newOptions = { ...base }
// specify the input
newOptions.input = opts.input
// specify the output
newOptions.output = {
...base.output,
...opts.output,
}
if (opts.plugins) {
newOptions.plugins = [...base.plugins, ...opts.plugins]
}
if (opts.pluginsPre) {
newOptions.plugins = [...opts.pluginsPre, ...newOptions.plugins]
}
if (opts.babelOpts) {
newOptions
}
return newOptions
}
const shopifyConjuredReferralBuildOpts = (prod = false) => {
const outputFile = prod
? './packages/shopify/conjured-referrals/better-sharing-shopify-conjured-referrals.js'
: './packages/shopify/conjured-referrals/better-sharing-shopify-conjured-referrals.debug.js'
return {
prod,
input: './src/platforms/shopify/conjured-referrals/betterSharing.js',
output: {
name: 'betterSharing',
file: outputFile,
format: 'iife',
globals: { window: 'window' },
},
pluginsPre: [url()],
}
}
const genericBuildOpts = (prod = false) => {
const outputFile = prod
? './packages/generic/better-sharing.js'
: './packages/generic/better-sharing.debug.js'
return {
prod,
input: './src/platforms/generic/betterSharing.js',
output: {
name: 'betterSharing',
file: outputFile,
format: 'iife',
globals: { window: 'window' },
},
pluginsPre: [url()],
}
}
export default [
targetBuild('kickoff-labs'),
targetBuild('kickoff-labs', { prod: true }),
customBuild(shopifyConjuredReferralBuildOpts()),
customBuild(shopifyConjuredReferralBuildOpts(true)),
// Generic build for generic/better-sharing.js
customBuild(genericBuildOpts()),
customBuild(genericBuildOpts(true)),
]