-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
273 lines (245 loc) · 7.07 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
272
273
// @ts-check
import path from 'path'
import ts from 'rollup-plugin-typescript2'
// import replace from '@rollup/plugin-replace'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
const pkg = require('./package.json')
// const name = pkg.name
function getAuthors(pkg) {
const { contributors, author } = pkg
const authors = new Set()
if (contributors && contributors)
contributors.forEach((contributor) => {
authors.add(contributor.name)
})
if (author) authors.add(author.name)
return Array.from(authors).join(', ')
}
const banner = `/*!
* ${pkg.name} v${pkg.version}
* (c) ${new Date().getFullYear()} ${getAuthors(pkg)}
* @license MIT
*/`
// ensure TS checks only once for each build
let hasTSChecked = false
const outputConfigs = {
// each file name has the format: `dist/${name}.${format}.js`
// format being a key of this object
mjs: {
file: pkg.module,
format: `es`,
},
cjs: {
file: pkg.module.replace('mjs', 'cjs'),
format: `cjs`,
},
global: {
file: pkg.unpkg,
format: `iife`,
},
browser: {
file: 'dist/index.esm-browser.js',
format: `es`,
},
}
const fetchConfigs = {
mjs: {
file: 'dist/fetch.mjs',
format: `es`,
},
global: {
file: 'dist/fetch.iife.js',
format: `iife`,
},
browser: {
file: 'dist/fetch.esm-browser.js',
format: `es`,
},
}
const xhrConfigs = {
mjs: {
file: 'dist/xhr.mjs',
format: `es`,
},
global: {
file: 'dist/xhr.iife.js',
format: `iife`,
},
browser: {
file: 'dist/xhr.esm-browser.js',
format: `es`,
},
}
const httpConfigs = {
mjs: {
file: 'dist/http.mjs',
format: `es`,
},
cjs: {
file: 'dist/http.cjs',
format: `cjs`,
},
}
const packageBuilds = Object.keys(outputConfigs)
const packageConfigs = packageBuilds.map((format) =>
createConfig('src/index.ts', format, outputConfigs[format])
)
const fetchBuilds = Object.keys(fetchConfigs)
packageConfigs.push(...fetchBuilds.map((format) =>
createConfig('implements/fetch/index.ts', format, fetchConfigs[format])
))
const xhrBuilds = Object.keys(xhrConfigs)
packageConfigs.push(...xhrBuilds.map((format) =>
createConfig('implements/xhr/index.ts', format, xhrConfigs[format])
))
const httpBuilds = Object.keys(httpConfigs)
packageConfigs.push(...httpBuilds.map((format) =>
createConfig('implements/http/index.ts', format, httpConfigs[format])
))
// only add the production ready if we are bundling the options
// packageBuilds.forEach((buildName) => {
// if (buildName === 'cjs') {
// packageConfigs.push(createProductionConfig(buildName))
// } else if (buildName === 'global') {
// packageConfigs.push(createMinifiedConfig(buildName))
// }
// })
export default packageConfigs
function createConfig(entry, buildName, output, plugins = []) {
if (!output) {
console.log(require('chalk').yellow(`invalid format: "${buildName}"`))
process.exit(1)
}
output.sourcemap = !!process.env.SOURCE_MAP
output.banner = banner
output.externalLiveBindings = false
output.globals = {
// 'vue-demi': 'VueDemi',
// vue: 'Vue',
// '@vue/composition-api': 'vueCompositionApi',
}
// const isProductionBuild = /\.prod\.[cm]?js$/.test(output.file)
const isGlobalBuild = buildName === 'global'
// const isRawESMBuild = buildName === 'browser'
// const isNodeBuild = buildName === 'cjs'
// const isBundlerESMBuild = buildName === 'browser' || buildName === 'mjs'
if (isGlobalBuild) output.name = 'TypedRequest'
const shouldEmitDeclarations = !hasTSChecked
const tsPlugin = ts({
check: !hasTSChecked,
tsconfig: path.resolve(__dirname, './tsconfig.json'),
cacheRoot: path.resolve(__dirname, './node_modules/.rts2_cache'),
tsconfigOverride: {
compilerOptions: {
sourceMap: output.sourcemap,
declaration: shouldEmitDeclarations,
declarationMap: shouldEmitDeclarations,
},
exclude: ['packages/*/__tests__', 'packages/*/test-dts'],
},
})
// we only need to check TS and generate declarations once for each build.
// it also seems to run into weird issues when checking multiple times
// during a single build.
hasTSChecked = true
// const external = ['vue-demi', 'vue', '@vue/composition-api']
const external = []
if (!isGlobalBuild) {
external.push('@vue/devtools-api')
}
const nodePlugins = [resolve(), commonjs()]
return {
input: entry,
// Global and Browser ESM builds inlines everything so that they can be
// used alone.
external,
plugins: [
tsPlugin,
// createReplacePlugin(
// isProductionBuild,
// isBundlerESMBuild,
// // isBrowserBuild?
// isGlobalBuild || isRawESMBuild || isBundlerESMBuild,
// isGlobalBuild,
// isNodeBuild
// ),
...nodePlugins,
...plugins,
],
output,
// onwarn: (msg, warn) => {
// if (!/Circular/.test(msg)) {
// warn(msg)
// }
// },
}
}
// function createReplacePlugin(
// isProduction,
// isBundlerESMBuild,
// isBrowserBuild,
// isGlobalBuild,
// isNodeBuild
// ) {
// const replacements = {
// __COMMIT__: `"${process.env.COMMIT}"`,
// __VERSION__: `"${pkg.version}"`,
// __DEV__:
// isBundlerESMBuild || (isNodeBuild && !isProduction)
// ? // preserve to be handled by bundlers
// `(process.env.NODE_ENV !== 'production')`
// : // hard coded dev/prod builds
// JSON.stringify(!isProduction),
// // this is only used during tests
// __TEST__:
// isBundlerESMBuild || isNodeBuild
// ? `(process.env.NODE_ENV === 'test')`
// : 'false',
// // If the build is expected to run directly in the browser (global / esm builds)
// __BROWSER__: JSON.stringify(isBrowserBuild),
// // is targeting bundlers?
// __BUNDLER__: JSON.stringify(isBundlerESMBuild),
// __GLOBAL__: JSON.stringify(isGlobalBuild),
// // is targeting Node (SSR)?
// __NODE_JS__: JSON.stringify(isNodeBuild),
// }
// // allow inline overrides like
// //__RUNTIME_COMPILE__=true yarn build
// Object.keys(replacements).forEach((key) => {
// if (key in process.env) {
// replacements[key] = process.env[key]
// }
// })
// return replace({
// preventAssignment: true,
// values: replacements,
// })
// }
// function createProductionConfig(format) {
// const extension = format === 'cjs' ? 'cjs' : 'js'
// const descriptor = format === 'cjs' ? '' : `.${format}`
// return createConfig(format, {
// file: `dist/${name}${descriptor}.prod.${extension}`,
// format: outputConfigs[format].format,
// })
// }
// function createMinifiedConfig(format) {
// const { terser } = require('rollup-plugin-terser')
// return createConfig(
// format,
// {
// file: `dist/${name}.${format === 'global' ? 'iife' : format}.prod.js`,
// format: outputConfigs[format].format,
// },
// [
// terser({
// module: /^esm/.test(format),
// compress: {
// ecma: 2015,
// pure_getters: true,
// },
// }),
// ]
// )
// }