@@ -5,21 +5,20 @@ import terser from 'terser'
5
5
import rollup from 'rollup'
6
6
import path from 'path'
7
7
import fs from 'fs-extra'
8
- import MagicString from 'magic-string'
9
- import { appendInlineSourceMap , getLocation } from './sourcemap'
10
8
import ts from 'typescript'
11
9
import { RawSourceMap , SourceMapConsumer } from 'source-map'
12
10
import merge from 'merge-source-map'
13
- import { extractInlineSourcemap , removeInlineSourceMap } from './sourcemap'
14
- import type { BuildOptions , EntryPointOptions } from './types'
15
- import assert from 'assert'
16
11
import {
17
12
Extractor ,
18
13
ExtractorConfig ,
19
14
ExtractorResult ,
20
15
} from '@microsoft/api-extractor'
21
16
import yargs from 'yargs/yargs'
22
17
18
+ import { extractInlineSourcemap , removeInlineSourceMap } from './sourcemap'
19
+ import type { BuildOptions , EntryPointOptions } from './types'
20
+ import { appendInlineSourceMap , getLocation } from './sourcemap'
21
+
23
22
const sleep = ( ms : number ) => new Promise ( ( resolve ) => setTimeout ( resolve , ms ) )
24
23
25
24
const { argv } = yargs ( process . argv )
@@ -50,7 +49,6 @@ const buildTargets: BuildOptions[] = [
50
49
minify : true ,
51
50
env : 'production' ,
52
51
} ,
53
-
54
52
// ESM, embedded `process`, ES5 syntax: typical Webpack dev
55
53
{
56
54
format : 'esm' ,
@@ -66,7 +64,6 @@ const buildTargets: BuildOptions[] = [
66
64
minify : false ,
67
65
env : '' ,
68
66
} ,
69
-
70
67
// ESM, pre-compiled "dev", ES2017 syntax: browser development
71
68
{
72
69
format : 'esm' ,
@@ -104,7 +101,6 @@ const entryPoints: EntryPointOptions[] = [
104
101
entryPoint : 'src/index.ts' ,
105
102
extractionConfig : 'api-extractor.json' ,
106
103
} ,
107
- // TODO The alternate entry point outputs are likely not importable this way. Need to sort that out.
108
104
{
109
105
prefix : 'rtk-query' ,
110
106
folder : 'query' ,
@@ -114,7 +110,7 @@ const entryPoints: EntryPointOptions[] = [
114
110
{
115
111
prefix : 'rtk-query-react' ,
116
112
folder : 'query/react' ,
117
- entryPoint : 'src/query/react.ts' ,
113
+ entryPoint : 'src/query/react/index .ts' ,
118
114
extractionConfig : 'api-extractor.query-react.json' ,
119
115
} ,
120
116
]
@@ -149,8 +145,12 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
149
145
target : 'esnext' ,
150
146
sourcemap : 'inline' ,
151
147
bundle : true ,
152
- external : [ 'react' , 'react-redux' ] ,
153
148
format : format === 'umd' ? 'esm' : format ,
149
+ // Needed to prevent auto-replacing of process.env.NODE_ENV in all builds
150
+ platform : 'neutral' ,
151
+ // Needed to return to normal lookup behavior when platform: 'neutral'
152
+ mainFields : [ 'browser' , 'module' , 'main' ] ,
153
+ conditions : [ 'browser' ] ,
154
154
define : env
155
155
? {
156
156
'process.env.NODE_ENV' : JSON . stringify ( env ) ,
@@ -209,7 +209,6 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
209
209
210
210
const mergedSourcemap = merge ( sourcemap , result . sourceMapText )
211
211
let code = result . outputText
212
- // TODO Is this used at all?
213
212
let mapping : RawSourceMap = mergedSourcemap
214
213
215
214
if ( minify ) {
@@ -236,39 +235,6 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
236
235
console . log ( 'Build artifact:' , chunk . path )
237
236
await fs . writeFile ( chunk . path , code )
238
237
await fs . writeJSON ( chunk . path + '.map' , mapping )
239
- const smc = await new SourceMapConsumer ( mapping )
240
- /*
241
- const stubMap = {
242
- '../src/configureStore.ts': [
243
- `"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers`,
244
- ],
245
- }
246
- for (const [source, stubList] of Object.entries(stubMap)) {
247
- for (const stub of stubList) {
248
- const originContent = smc.sourceContentFor(source)
249
- const originLocation = getLocation(originContent, stub)
250
- const bundledPosition = getLocation(code, stub)
251
- const recoverLocation = smc.originalPositionFor({
252
- line: bundledPosition.line,
253
- column: bundledPosition.column,
254
- })
255
- assert.deepStrictEqual(
256
- source,
257
- recoverLocation.source,
258
- `sourceFile: expected ${source} but got ${recoverLocation.source}`
259
- )
260
- assert(
261
- Math.abs(originLocation.line - recoverLocation.line) <= 1,
262
- `line: expected ${originLocation.line} but got ${recoverLocation.line}`
263
- )
264
- assert(
265
- Math.abs(originLocation.column - recoverLocation.column) <= 1,
266
- `column: expected ${originLocation.column} but got ${recoverLocation.column}`
267
- )
268
- }
269
-
270
- }
271
- */
272
238
}
273
239
}
274
240
@@ -302,6 +268,7 @@ async function buildUMD(outputPath: string, prefix: string) {
302
268
}
303
269
}
304
270
271
+ // Generates an index file to handle importing CJS dev/prod
305
272
async function writeEntry ( folder : string , prefix : string ) {
306
273
await fs . writeFile (
307
274
path . join ( 'dist' , folder , 'index.js' ) ,
@@ -320,7 +287,7 @@ interface BuildArgs {
320
287
}
321
288
322
289
async function main ( { skipExtraction = false , local = false } : BuildArgs ) {
323
- //await fs.remove(outputDir)
290
+ // Dist folder will be removed by rimraf beforehand so TSC can generate typedefs
324
291
await fs . ensureDir ( outputDir )
325
292
326
293
for ( let entryPoint of entryPoints ) {
@@ -337,16 +304,22 @@ async function main({ skipExtraction = false, local = false }: BuildArgs) {
337
304
)
338
305
await Promise . all ( bundlePromises )
339
306
await writeEntry ( folder , prefix )
307
+ }
340
308
341
- if ( folder ) {
342
- const packageSource = path . join ( 'src' , folder , 'package.json' )
343
- const packageDest = path . join ( outputPath , 'package.json' )
344
- }
345
-
346
- await sleep ( 500 ) // hack, waiting file to save
309
+ // Run UMD builds after everything else so we don't have to sleep after each set
310
+ for ( let entryPoint of entryPoints ) {
311
+ const { folder } = entryPoint
312
+ const outputPath = path . join ( 'dist' , folder )
347
313
await buildUMD ( outputPath , entryPoint . prefix )
348
314
}
349
315
316
+ // We need one additional package.json file in dist to support
317
+ // versioned types for TS <4.1
318
+ fs . copyFileSync (
319
+ 'src/query/react/versionedTypes/package.json' ,
320
+ 'dist/query/react/versionedTypes/package.json'
321
+ )
322
+
350
323
if ( ! skipExtraction ) {
351
324
for ( let entryPoint of entryPoints ) {
352
325
// Load and parse the api-extractor.json file
@@ -377,9 +350,7 @@ async function main({ skipExtraction = false, local = false }: BuildArgs) {
377
350
}
378
351
}
379
352
}
380
-
381
-
382
- // addSubpath()
383
353
}
354
+
384
355
const { skipExtraction, local } = argv
385
356
main ( { skipExtraction, local } )
0 commit comments