forked from MikeKovarik/exifr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
271 lines (252 loc) · 7.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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
import {promises as fs} from 'fs'
import {builtinModules} from 'module'
import {fileURLToPath} from 'url'
import path from 'path'
import babel from 'rollup-plugin-babel'
import notify from 'rollup-plugin-notify'
import {terser} from 'rollup-plugin-terser'
import * as polyfills from './src/polyfill/ie.mjs'
import pkg from './package.json'
let exifrDir = path.dirname(fileURLToPath(import.meta.url))
function createRelativeImportPath(sourcePath, targetPath) {
let importPath = path
.relative(path.dirname(sourcePath), path.join(exifrDir, './src/', targetPath))
.replace(/\\/g, '/')
if (!importPath.startsWith('.')) importPath = './' + importPath
return importPath
}
function replaceBuiltinsWithIePolyfills() {
// list of things that needs to be translated
var translatables = [
['Object.keys', 'ObjectKeys'],
['Object.values', 'ObjectValues'],
['Object.entries', 'ObjectEntries'],
['Object.assign', 'ObjectAssign'],
['Object.fromEntries', 'ObjectFromEntries'],
['Array.from', 'ArrayFrom'],
['new Set', 'NewSet'],
['new Map', 'NewMap'],
['Number.isNaN', 'isNaN'],
]
// keys of translatables and builtings (like fetch)
return {
async transform(code, filePath) {
if (!filePath.includes('exifr')) return null
// ignore all cross imported polyfill files to preventcircular dependency
if (filePath.endsWith('ie.mjs')) return null
if (filePath.endsWith('global.mjs')) return null
for (let [from, to] of translatables)
code = code.replace(new RegExp(from, 'g'), to)
let polyfillKeys = Object.keys(polyfills)
let polyfillPath = createRelativeImportPath(filePath, 'polyfill/ie.mjs')
let importLine = `import {${polyfillKeys.join(', ')}} from '${polyfillPath}'`
return importLine + '\n' + code
}
}
}
function replaceFetchPolyfills() {
return {
async transform(code, filePath) {
if (!filePath.includes('exifr')) return null
// ignore all cross imported polyfill files to preventcircular dependency
if (filePath.endsWith('ie.mjs')) return null
if (filePath.endsWith('fetch.mjs')) return null
if (filePath.endsWith('global.mjs')) return null
if (filePath.endsWith('fetch-node.mjs')) return null
if (filePath.endsWith('fetch-xhr.mjs')) return null
code = code.replace('polyfill/fetch-node.mjs', 'polyfill/fetch-xhr.mjs')
let polyfillPath = createRelativeImportPath(filePath, 'polyfill/fetch-xhr.mjs')
let importLine = `import '${polyfillPath}'`
return importLine + '\n' + code
}
}
}
function replaceFile(fileName, replacement = 'export default {}') {
const targetId = 'replace-' + Math.round(Math.random() * 10000)
return {
resolveId(importPath) {
return importPath.endsWith(fileName) ? targetId : null
},
load(importPath) {
return importPath === targetId ? replacement : null
}
}
}
// IE10 doesn't copy static methods to inherited classes. Babel know about it for years
// but they are stubborn to do anything about it. So we inject the method copying to their _inherits().
function fixIeStaticMethodSubclassing() {
let searched = 'if (superClass) _setPrototypeOf'
let injection = `
var builtins = ['prototype', '__proto__', 'caller', 'arguments', 'length', 'name']
Object.getOwnPropertyNames(superClass).forEach(function(key) {
if (builtins.indexOf(key) !== -1) return
if (subClass[key] !== superClass[key]) subClass[key] = superClass[key]
})`
let replacement = injection + '\n' + searched
return {
renderChunk(code) {
return code.replace(searched, replacement)
}
}
}
// Webpack magic comment to ignore import('fs')
function injectIgnoreComments() {
return {
renderChunk(code) {
return code.replace(`import(`, `import(/* webpackIgnore: true */ `)
}
}
}
function cloneCjsAndMjsToJs() {
return {
writeBundle(bundle) {
let newFileName = bundle.file.replace('.cjs', '.js').replace('.mjs', '.js')
fs.copyFile(bundle.file, newFileName)
}
}
}
const terserConfig = {
compress: true,
mangle: true,
toplevel: true
}
const babelPlugins = [
//'@babel/plugin-proposal-nullish-coalescing-operator',
//'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-syntax-dynamic-import',
]
const babelModern = {
plugins: babelPlugins,
presets: [
['@babel/preset-env', {
targets: '>1%, not dead, not ie 10-11'
}],
],
"comments": false
}
const babelLegacy = {
plugins: [
...babelPlugins,
//'./src/util/babel-plugin-transform-for-of-array-to-array.cjs',
'babel-plugin-transform-for-of-without-iterator',
'babel-plugin-transform-async-to-promises',
// select es2015 preset builtins
'@babel/plugin-transform-arrow-functions',
'@babel/plugin-transform-block-scoping',
'@babel/plugin-transform-classes',
'@babel/plugin-transform-computed-properties',
['@babel/plugin-transform-destructuring', {loose: true, useBuiltIns: true}],
'@babel/plugin-transform-duplicate-keys',
'@babel/plugin-transform-function-name',
'@babel/plugin-transform-literals',
'@babel/plugin-transform-parameters',
'@babel/plugin-transform-shorthand-properties',
['@babel/plugin-transform-spread', {loose: true}],
'@babel/plugin-transform-template-literals',
],
}
var external = [...builtinModules, ...Object.keys(pkg.dependencies || {})]
var globals = objectFromArray(external)
var name = pkg.name
var amd = {id: pkg.name}
function createLegacyBundle(inputPath, outputPath) {
return {
input: inputPath,
plugins: [
notify(),
replaceFile('FsReader.mjs', 'export default {}'),
replaceFile('import.mjs', 'export default function() {}'),
babel(babelLegacy),
replaceBuiltinsWithIePolyfills(),
replaceFetchPolyfills(),
fixIeStaticMethodSubclassing(),
terser(terserConfig),
cloneCjsAndMjsToJs(),
],
external,
output: {
file: outputPath,
format: 'umd',
exports: 'named',
name,
amd,
globals,
},
}
}
function createModernBundle(inputPath, esmPath, umdPath) {
return {
input: inputPath,
plugins: [
notify(),
babel(babelModern),
terser(terserConfig),
injectIgnoreComments(),
cloneCjsAndMjsToJs(),
],
external,
output: [
{
file: esmPath,
format: 'esm',
exports: 'named',
globals,
},
{
file: umdPath,
format: 'umd',
exports: 'named',
globals,
name,
amd,
}
]
}
}
export default args => {
let [bundle] = args.input || []
if (typeof args.watch === 'string') {
bundle = args.watch
args.watch = args.w = true
}
let output = []
if (bundle === 'full' || bundle === undefined) {
delete args.input
output.push(
createModernBundle('src/bundles/full.mjs', 'dist/full.esm.mjs', 'dist/full.umd.cjs'),
createLegacyBundle('src/bundles/full.mjs', 'dist/full.legacy.umd.cjs'),
)
}
if (bundle === 'lite' || bundle === undefined) {
delete args.input
output.push(
createModernBundle('src/bundles/lite.mjs', 'dist/lite.esm.mjs', 'dist/lite.umd.cjs'),
createLegacyBundle('src/bundles/lite.mjs', 'dist/lite.legacy.umd.cjs'),
)
}
if (bundle === 'mini' || bundle === undefined) {
delete args.input
output.push(
createModernBundle('src/bundles/mini.mjs', 'dist/mini.esm.mjs', 'dist/mini.umd.cjs'),
createLegacyBundle('src/bundles/mini.mjs', 'dist/mini.legacy.umd.cjs'),
)
}
// TO BE WORKED ON
/*
if (bundle === 'nano' || bundle === undefined) {
delete args.input
output.push(
createModernBundle('src/bundles/nano.mjs', 'dist/nano.esm.mjs', 'dist/nano.umd.cjs'),
createLegacyBundle('src/bundles/nano.mjs', 'dist/nano.legacy.umd.cjs'),
)
}
*/
return output
}
function objectFromArray(modules) {
var obj = {}
modules.forEach(moduleName => obj[moduleName] = moduleName)
return obj
}