-
Notifications
You must be signed in to change notification settings - Fork 384
/
rollup.config.mjs
148 lines (132 loc) · 3.68 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
// @ts-check
import { createRequire } from 'module'
import { fileURLToPath } from 'url'
import path from 'path'
import ts from 'rollup-plugin-typescript2'
import json from '@rollup/plugin-json'
import chalk from 'chalk'
import terser from '@rollup/plugin-terser'
const require = createRequire(import.meta.url)
const __dirname = fileURLToPath(new URL('.', import.meta.url))
const resolve = p => path.resolve(__dirname, p)
const pkg = require(resolve(`package.json`))
// ensure TS checks only once for each build
let hasTSChecked = false
const outputConfigs = {
'esm-bundler': {
file: resolve(`dist/gcoord.esm-bundler.js`),
format: `es`
},
'esm-browser': {
file: resolve(`dist/gcoord.esm-browser.js`),
format: `es`
},
cjs: {
file: resolve(`dist/gcoord.cjs.js`),
format: `cjs`
},
global: {
file: resolve(`dist/gcoord.global.js`),
format: `iife`
},
}
const defaultFormats = Object.keys(outputConfigs)
const inlineFormats = process.env.FORMATS && process.env.FORMATS.split(',')
const formats = inlineFormats || defaultFormats
const configs = process.env.PROD_ONLY
? []
: formats.map(format => createConfig(format, outputConfigs[format]))
if (process.env.NODE_ENV === 'production') {
formats.forEach(format => {
if (format === 'cjs') {
configs.push(createProductionConfig(format))
}
if (/^(global|esm-browser)/.test(format)) {
configs.push(createMinifiedConfig(format))
}
})
}
export default configs
function createConfig(format, output, plugins = []) {
if (!output) {
console.log(chalk.yellow(`invalid format: "${format}"`))
process.exit(1)
}
const isGlobalBuild = /global/.test(format)
output.exports = 'default';
output.sourcemap = !!process.env.SOURCE_MAP
output.banner = `/**
* @preserve
* gcoord ${pkg.version}, ${pkg.description}
* Copyright (c) ${new Date().getFullYear()} Jiulong Hu <me@hujiulong.com>
*/`;
if (isGlobalBuild) {
output.name = 'gcoord';
}
const shouldEmitDeclarations =
pkg.types && 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'),
useTsconfigDeclarationDir: true,
tsconfigOverride: {
compilerOptions: {
target: isGlobalBuild ? 'es3' : 'es2015',
sourceMap: output.sourcemap,
declaration: shouldEmitDeclarations,
declarationMap: shouldEmitDeclarations,
declarationDir: shouldEmitDeclarations ? 'dist/types' : undefined,
},
exclude: ['test', '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
return {
input: resolve('src/index.ts'),
plugins: [
json({
namedExports: false
}),
tsPlugin,
...plugins
],
output,
onwarn: (msg, warn) => {
if (!/Circular/.test(msg)) {
warn(msg)
}
},
treeshake: {
moduleSideEffects: false
}
}
}
function createProductionConfig(format) {
return createConfig(format, {
file: resolve(`dist/gcoord.${format}.prod.js`),
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,
pure_getters: true
},
safari10: true
})
]
)
}