-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathtsup.config.ts
254 lines (232 loc) · 6.85 KB
/
tsup.config.ts
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
import * as babel from '@babel/core'
import type { Plugin } from 'esbuild'
import { getBuildExtensions } from 'esbuild-extra'
import fs from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
import type { Options as TsupOptions } from 'tsup'
import { defineConfig } from 'tsup'
// No __dirname under Node ESM
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const outputDir = path.join(__dirname, 'dist')
export interface BuildOptions {
format: 'cjs' | 'esm'
name:
| 'development'
| 'production.min'
| 'legacy-esm'
| 'modern'
| 'browser'
| 'umd'
| 'umd.min'
minify: boolean
env: 'development' | 'production' | ''
target?:
| 'es2017'
| 'es2018'
| 'es2019'
| 'es2020'
| 'es2021'
| 'es2022'
| 'esnext'
}
export interface EntryPointOptions {
prefix: string
folder: string
entryPoint: string
extractionConfig: string
externals?: string[]
}
const buildTargets: BuildOptions[] = [
{
format: 'cjs',
name: 'development',
target: 'esnext',
minify: false,
env: 'development',
},
{
format: 'cjs',
name: 'production.min',
target: 'esnext',
minify: true,
env: 'production',
},
// ESM, embedded `process`: modern Webpack dev
{
format: 'esm',
name: 'modern',
target: 'esnext',
minify: false,
env: '',
},
// ESM, embedded `process`: fallback for Webpack 4,
// which doesn't support `exports` field or optional chaining
{
format: 'esm',
name: 'legacy-esm',
target: 'es2017',
minify: false,
env: '',
},
// ESM, pre-compiled "prod": browser prod
{
format: 'esm',
name: 'browser',
target: 'esnext',
minify: true,
env: 'production',
},
]
const entryPoints: EntryPointOptions[] = [
{
prefix: 'redux-toolkit',
folder: '',
entryPoint: 'src/index.ts',
extractionConfig: 'api-extractor.json',
},
{
prefix: 'redux-toolkit-react',
folder: 'react/',
entryPoint: 'src/react/index.ts',
extractionConfig: 'api-extractor-react.json',
externals: ['redux', '@reduxjs/toolkit'],
},
{
prefix: 'rtk-query',
folder: 'query',
entryPoint: 'src/query/index.ts',
extractionConfig: 'api-extractor.query.json',
externals: ['redux', '@reduxjs/toolkit'],
},
{
prefix: 'rtk-query-react',
folder: 'query/react',
entryPoint: 'src/query/react/index.ts',
extractionConfig: 'api-extractor.query-react.json',
externals: ['redux', '@reduxjs/toolkit'],
},
]
function writeCommonJSEntry(folder: string, prefix: string) {
fs.writeFileSync(
path.join(folder, 'index.js'),
`'use strict'
if (process.env.NODE_ENV === 'production') {
module.exports = require('./${prefix}.production.min.cjs')
} else {
module.exports = require('./${prefix}.development.cjs')
}`,
)
}
// Extract error strings, replace them with error codes, and write messages to a file
const mangleErrorsTransform: Plugin = {
name: 'mangle-errors-plugin',
setup(build) {
const { onTransform } = getBuildExtensions(build, 'mangle-errors-plugin')
onTransform({ loaders: ['ts', 'tsx'] }, async (args) => {
try {
const res = babel.transformSync(args.code, {
parserOpts: {
plugins: ['typescript', 'jsx'],
},
plugins: [['./scripts/mangleErrors.cjs', { minify: false }]],
})!
return {
code: res.code!,
map: res.map!,
}
} catch (err) {
console.error('Babel mangleErrors error: ', err)
return null
}
})
},
}
const tsconfig: NonNullable<TsupOptions['tsconfig']> = path.join(
__dirname,
'./tsconfig.build.json',
)
export default defineConfig((options) => {
const configs = entryPoints
.map((entryPointConfig) => {
const artifactOptions: TsupOptions[] = buildTargets.map((buildTarget) => {
const { prefix, folder, entryPoint, externals } = entryPointConfig
const { format, minify, env, name, target } = buildTarget
const outputFilename = `${prefix}.${name}`
const folderSegments = [outputDir, folder]
if (format === 'cjs') {
folderSegments.push('cjs')
}
const outputFolder = path.join(...folderSegments)
const extension =
name === 'legacy-esm' ? '.js' : format === 'esm' ? '.mjs' : '.cjs'
const defineValues: Record<string, string> = {}
if (env) {
Object.assign(defineValues, {
'process.env.NODE_ENV': JSON.stringify(env),
})
}
const generateTypedefs = name === 'modern' && format === 'esm'
return {
entry: {
[outputFilename]: entryPoint,
},
format,
tsconfig,
outDir: outputFolder,
target,
outExtension: () => ({ js: extension }),
minify,
sourcemap: true,
external: externals,
esbuildPlugins: [mangleErrorsTransform],
esbuildOptions(options) {
// Needed to prevent auto-replacing of process.env.NODE_ENV in all builds
options.platform = 'neutral'
// Needed to return to normal lookup behavior when platform: 'neutral'
options.mainFields = ['browser', 'module', 'main']
options.conditions = ['browser']
},
define: defineValues,
async onSuccess() {
if (format === 'cjs' && name === 'production.min') {
writeCommonJSEntry(outputFolder, prefix)
} else if (generateTypedefs) {
if (folder === '') {
// we need to delete the declaration file and replace it with the original source file
fs.rmSync(path.join(outputFolder, 'uncheckedindexed.d.ts'), {
force: true,
})
fs.copyFileSync(
'src/uncheckedindexed.ts',
path.join(outputFolder, 'uncheckedindexed.ts'),
)
}
// TODO Copy/generate `.d.mts` files?
// const inputTypedefsFile = `${outputFilename}.d.ts`
// const outputTypedefsFile = `${outputFilename}.d.mts`
// const inputTypedefsPath = path.join(
// outputFolder,
// inputTypedefsFile
// )
// const outputTypedefsPath = path.join(
// outputFolder,
// outputTypedefsFile
// )
// while (!fs.existsSync(inputTypedefsPath)) {
// // console.log(
// // 'Waiting for typedefs to be generated: ' + inputTypedefsFile
// // )
// await delay(100)
// }
// fs.copyFileSync(inputTypedefsPath, outputTypedefsPath)
}
},
}
})
return artifactOptions
})
.flat()
return configs
})