-
-
Notifications
You must be signed in to change notification settings - Fork 334
/
rollup.config.mjs
386 lines (359 loc) · 11.5 KB
/
rollup.config.mjs
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
import json from '@rollup/plugin-json'
import replace from '@rollup/plugin-replace'
import terser from '@rollup/plugin-terser'
import { promises as fs } from 'node:fs'
import { createRequire } from 'node:module'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import pc from 'picocolors'
import ts from 'rollup-plugin-typescript2'
if (!process.env.TARGET) {
throw new Error('TARGET package must be specified via --environment flag.')
}
const require = createRequire(import.meta.url)
const __dirname = fileURLToPath(new URL('.', import.meta.url))
const masterVersion = require('./package.json').version
const packagesDir = path.resolve(__dirname, 'packages')
const packageDir = path.resolve(packagesDir, process.env.TARGET)
const name = path.basename(packageDir)
const resolve = p => path.resolve(packageDir, p)
const pkg = require(resolve(`package.json`))
const packageOptions = pkg.buildOptions || {}
const banner = `/*!
* ${name} v${pkg.version}
* (c) ${new Date().getFullYear()} ${pkg.author.name}
* Released under the ${pkg.license} License.
*/`
// ensure TS checks only once for each build
let hasTSChecked = false
const stubs = {
[`dist/${name}.cjs`]: `${name}.cjs.js`,
[`dist/${name}.mjs`]: `${name}.esm-bundler.js`,
[`dist/${name}.runtime.mjs`]: `${name}.runtime.esm-bundler.js`,
[`dist/${name}.prod.cjs`]: `${name}.cjs.prod.js`
}
const outputConfigs = {
mjs: {
file: `dist/${name}.mjs`,
format: `es`
},
'mjs-node': {
file: `dist/${name}.node.mjs`,
format: `es`
},
browser: {
file: `dist/${name}.esm-browser.js`,
format: `es`
},
cjs: {
// file: `dist/${name}.cjs.js`,
file: `dist/${name}.cjs`,
format: `cjs`
},
global: {
file: `dist/${name}.global.js`,
format: `iife`
},
// runtime-only builds, for '@intlify/core' and 'vue-i18n' package only
'mjs-runtime': {
file: `dist/${name}.runtime.mjs`,
format: `es`
},
'mjs-node-runtime': {
file: `dist/${name}.runtime.node.mjs`,
format: `es`
},
'browser-runtime': {
file: `dist/${name}.runtime.esm-browser.js`,
format: 'es'
},
'global-runtime': {
file: `dist/${name}.runtime.global.js`,
format: 'iife'
}
}
const defaultFormats = ['esm-bundler', 'cjs']
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split(',')
const packageFormats = inlineFormats || packageOptions.formats || defaultFormats
const packageConfigs = process.env.PROD_ONLY
? []
: packageFormats.map(format => createConfig(format, outputConfigs[format]))
if (process.env.NODE_ENV === 'production') {
packageFormats.forEach(format => {
if (packageOptions.prod === false) {
return
}
if (format === 'cjs') {
packageConfigs.push(createProductionConfig(format))
}
if (/^(global|browser)(-runtime)?/.test(format)) {
packageConfigs.push(createMinifiedConfig(format))
}
})
}
export default packageConfigs
function createConfig(format, _output, plugins = []) {
const rawFile = _output.file
const output = { format: _output.format, file: resolve(rawFile) }
if (!output) {
console.log(pc.yellow(`invalid format: "${format}"`))
process.exit(1)
}
output.sourcemap = !!process.env.SOURCE_MAP
output.banner = banner
output.externalLiveBindings = false
if (
name === 'vue-i18n' ||
name === 'vue-i18n-core' ||
name === 'petite-vue-i18n'
) {
output.globals = {
vue: 'Vue',
'@vue/devtools-api': 'VueDevtoolsApi'
}
}
const isProductionBuild =
process.env.__DEV__ === 'false' || /\.prod\.[cm]?js$/.test(output.file)
const isBundlerESMBuild = /mjs/.test(format)
const isBrowserESMBuild = /browser/.test(format)
// const isNodeBuild = format === 'cjs' || format === 'cjs-lite'
const isNodeBuild =
output.file.includes('.node.') || format === 'cjs' || format === 'cjs-lite'
const isGlobalBuild = /global/.test(format)
const isRuntimeOnlyBuild = /runtime/.test(format)
const isLite = /petite-vue-i18n/.test(name)
if (isGlobalBuild) {
output.name = packageOptions.name
}
const shouldEmitDeclarations = process.env.TYPES != null && !hasTSChecked
const tsPlugin = ts({
check: process.env.NODE_ENV === 'production' && !hasTSChecked,
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'),
tsconfigOverride: {
compilerOptions: {
// target: isNodeBuild ? 'es2019' : 'es2015',
sourceMap: output.sourcemap,
declaration: shouldEmitDeclarations,
declarationMap: shouldEmitDeclarations
},
exclude: ['**/test', 'e2e', 'scripts', '*.config.ts']
}
})
// 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 entryFile = /runtime/.test(format) ? `src/runtime.ts` : `src/index.ts`
const external =
isGlobalBuild || isBrowserESMBuild
? ['vue'] // packageOptions.enableNonBrowserBranches
: // ? packageOptions.enableFullBundleForEsmBrowser && isBrowserESMBuild
// ? []
// : ['vue'] // packageOptions.enableNonBrowserBranches
// Node / esm-bundler builds. Externalize everything.
[
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {})
]
const nodePlugins =
// packageOptions.enableNonBrowserBranches && format !== 'cjs'
format !== 'cjs'
? [
require('@rollup/plugin-node-resolve').nodeResolve(),
require('@rollup/plugin-commonjs')({
sourceMap: false
}),
require('rollup-plugin-node-builtins')(),
require('rollup-plugin-node-globals')()
]
: []
return {
input: resolve(entryFile),
// Global and Browser ESM builds inlines everything so that they can be
// used alone.
external,
plugins: [
json({
namedExports: false
}),
tsPlugin,
createReplacePlugin(
name,
isProductionBuild,
isBundlerESMBuild,
isBrowserESMBuild,
// isBrowserBuild?
isGlobalBuild || isBrowserESMBuild || isBundlerESMBuild,
// (isGlobalBuild || isBrowserESMBuild || isBundlerESMBuild) && !packageOptions.enableFullBundleForEsmBrowser,
isGlobalBuild,
isNodeBuild,
isRuntimeOnlyBuild,
isLite,
path.parse(output.file).base || ''
),
...nodePlugins,
...plugins,
{
async writeBundle() {
const stub = stubs[rawFile]
if (!stub) return
const contents =
format === 'cjs'
? `module.exports = require('../${rawFile}')`
: `export * from '../${rawFile}'`
await fs.writeFile(resolve(`dist/${stub}`), contents)
console.log(`created stub ${pc.bold(`dist/${stub}`)}`)
/*
// add the node specific version
if (format === 'mjs' || format === 'mjs-runtime') {
// NOTE:
// https://github.com/vuejs/router/issues/1516
// https://github.com/vuejs/router/commit/53f720622aa273e33c05517fa917cdcfbfba52bc
if (name === 'vue-i18n' || name === 'petite-vue-i18n') {
const outfile = `dist/${stub}`.replace(
'esm-bundler.js',
'node.mjs'
)
await fs.writeFile(
resolve(outfile),
`global.__VUE_PROD_DEVTOOLS__ = false;\n` + contents
)
console.log(`created stub ${pc.bold(outfile)}`)
} else if (name === 'core') {
const outfile = `dist/${stub}`.replace(
'esm-bundler.js',
'node.mjs'
)
await fs.writeFile(
resolve(outfile),
`global.__VUE_PROD_DEVTOOLS__ = false;\nglobal.__INTLIFY_JIT_COMPILATION__ = true;\n` +
contents
)
console.log(`created stub ${pc.bold(outfile)}`)
}
}
*/
}
}
],
output,
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg)
}
},
treeshake: {
moduleSideEffects: false
}
}
}
function createReplacePlugin(
name,
isProduction,
isBundlerESMBuild,
isBrowserESMBuild,
isBrowserBuild,
isGlobalBuild,
isNodeBuild,
isRuntimeOnlyBuild,
isLite,
bundleFilename
) {
const replacements = {
__COMMIT__: `"${process.env.COMMIT}"`,
__VERSION__: `'${masterVersion}'`,
__DEV__:
['vue-i18n', 'petite-vue-i18n'].includes(name) && isNodeBuild
? 'false' // tree-shake devtools
: isBundlerESMBuild
? // preserve to be handled by bundlers
`(process.env.NODE_ENV !== 'production')`
: // hard coded dev/prod builds
!isProduction,
// this is only used during Vue's internal tests
__TEST__: `false`,
// If the build is expected to run directly in the browser (global / esm builds)
__BROWSER__: String(isBrowserBuild),
__GLOBAL__: String(isGlobalBuild),
// for runtime only
__RUNTIME__: String(isRuntimeOnlyBuild),
// bundle filename
__BUNDLE_FILENAME__: `'${bundleFilename}'`,
__ESM_BUNDLER__: String(isBundlerESMBuild),
__ESM_BROWSER__: String(isBrowserESMBuild),
// is targeting Node (SSR)?
__NODE_JS__: String(isNodeBuild),
// for lite version
__LITE__: String(isLite),
// feature flags
__FEATURE_FULL_INSTALL__: isBundlerESMBuild
? `__VUE_I18N_FULL_INSTALL__`
: `true`,
__FEATURE_LEGACY_API__: isBundlerESMBuild
? `__VUE_I18N_LEGACY_API__`
: `true`,
__FEATURE_PROD_VUE_DEVTOOLS__:
['vue-i18n', 'petite-vue-i18n'].includes(name) && isNodeBuild
? 'false' // tree-shake devtools
: isBundlerESMBuild
? `__VUE_PROD_DEVTOOLS__`
: `false`,
__FEATURE_PROD_INTLIFY_DEVTOOLS__: isBundlerESMBuild
? `__INTLIFY_PROD_DEVTOOLS__`
: `false`,
__FEATURE_DROP_MESSAGE_COMPILER__: isBundlerESMBuild
? `__INTLIFY_DROP_MESSAGE_COMPILER__`
: `false`,
...(isProduction && isBrowserBuild
? {
'emitError(': `/*#__PURE__*/ emitError(`,
'createCompileError(': `/*#__PURE__*/ createCompileError(`,
'throw createCoreError(': `throw Error(`,
'throw createI18nError(': `throw Error(`
}
: {})
}
Object.keys(replacements).forEach(key => {
if (key in process.env) {
replacements[key] = process.env[key]
}
})
return replace({
values: replacements,
preventAssignment: true,
/**
* we need this delimiter to prevent adding PURE comments at function declarations
* https://rollupjs.org/configuration-options/#pure
*/
delimiters: ['\\b(?<!function )', '']
})
}
function createProductionConfig(format) {
// const extension = format === 'cjs' ? 'cjs' : 'js'
// const descriptor = format === 'cjs' ? '' : `.${format}`
const extension = format === 'cjs' || format === 'mjs' ? format : 'js'
const descriptor = format === 'cjs' || format === 'mjs' ? '' : `.${format}`
return createConfig(format, {
file: `dist/${name}${descriptor}.prod.${extension}`,
format: outputConfigs[format].format
})
}
function createMinifiedConfig(format) {
return createConfig(
format,
{
file: outputConfigs[format].file.replace(/\.js$/, '.prod.js'),
format: outputConfigs[format].format
},
[
terser({
module: /^esm/.test(format),
compress: {
ecma: 2015
},
safari10: true
})
]
)
}