Skip to content

Commit cce75bf

Browse files
authored
Merge pull request #1013 from reduxjs/feature/rtkq-ts40-compat
2 parents f6df18b + d2aaff0 commit cce75bf

17 files changed

+177
-196
lines changed

jest.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ module.exports = {
1010
globals: {
1111
'ts-jest': {
1212
tsconfig: 'tsconfig.test.json',
13+
diagnostics: {
14+
ignoreCodes: [6133],
15+
},
1316
},
1417
},
1518
}

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+16-42
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"name": "@reduxjs/toolkit",
33
"version": "1.6.0-alpha.0",
44
"description": "The official, opinionated, batteries-included toolset for efficient Redux development",
5+
"author": "Mark Erikson <[email protected]>",
6+
"license": "MIT",
57
"repository": {
68
"type": "git",
79
"url": "git+https://github.com/reduxjs/redux-toolkit.git"
@@ -23,35 +25,6 @@
2325
"module": "dist/redux-toolkit.esm.js",
2426
"unpkg": "dist/redux-toolkit.umd.min.js",
2527
"types": "dist/index.d.ts",
26-
"exports": {
27-
".": {
28-
"types": "./dist/index.d.ts",
29-
"module": "./dist/redux-toolkit.esm.js",
30-
"default": "./dist/index.js"
31-
},
32-
"./query": {
33-
"types": "./query/index.d.ts",
34-
"module": "./query/rtk-query.esm.js",
35-
"default": "./query/index.js"
36-
},
37-
"./query/react": {
38-
"types": "./query/react.d.ts",
39-
"module": "./query/react/rtk-query-react.esm.js",
40-
"default": "./query/react/index.js"
41-
}
42-
},
43-
"typesVersions": {
44-
"*": {
45-
"query": [
46-
"./query/index.d.ts"
47-
],
48-
"query/react": [
49-
"./query/react.d.ts"
50-
]
51-
}
52-
},
53-
"author": "Mark Erikson <[email protected]>",
54-
"license": "MIT",
5528
"devDependencies": {
5629
"@microsoft/api-extractor": "^7.13.2",
5730
"@testing-library/react": "^11.2.6",
@@ -72,7 +45,7 @@
7245
"console-testing-library": "^0.3.1",
7346
"convert-source-map": "^1.7.0",
7447
"cross-fetch": "^3.1.4",
75-
"esbuild": "0.8.57",
48+
"esbuild": "^0.11.13",
7649
"eslint-config-react-app": "^5.0.1",
7750
"fs-extra": "^9.1.0",
7851
"invariant": "^2.2.4",
@@ -95,8 +68,8 @@
9568
"yargs": "^15.3.1"
9669
},
9770
"scripts": {
98-
"build-ci": "rimraf dist query && tsc && node scripts/cli.js",
99-
"build": "rimraf dist query && tsc && node scripts/cli.js --skipExtraction",
71+
"build-ci": "rimraf dist && tsc && node scripts/cli.js",
72+
"build": "rimraf dist && tsc && node scripts/cli.js --local",
10073
"dev": "tsdx watch --format cjs,esm,system,umd",
10174
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"**/*.md\"",
10275
"format:check": "prettier --list-different \"src/**/*.{ts,tsx}\" \"docs/*/**.md\"",
@@ -119,18 +92,19 @@
11992
"redux-thunk": "^2.3.0",
12093
"reselect": "^4.0.0"
12194
},
122-
"sideEffects": false,
123-
"jest": {
124-
"globals": {
125-
"ts-jest": {
126-
"diagnostics": {
127-
"ignoreCodes": [
128-
6133
129-
]
130-
}
131-
}
95+
"peerDependencies": {
96+
"react": "^16.14.0 || ^17.0.0",
97+
"react-redux": "^7.2.1"
98+
},
99+
"peerDependenciesMeta": {
100+
"react": {
101+
"optional": true
102+
},
103+
"react-redux": {
104+
"optional": true
132105
}
133106
},
107+
"sideEffects": false,
134108
"bugs": {
135109
"url": "https://github.com/reduxjs/redux-toolkit/issues"
136110
},

query/react/package.json

+2-9
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,7 @@
55
"main": "../../dist/query/react/index.js",
66
"module": "../../dist/query/react/rtk-query-react.esm.js",
77
"unpkg": "../../dist/query/react/rtk-query-react.umd.min.js",
8-
"types": "../../dist/query/react/index.d.ts",
98
"author": "Mark Erikson <[email protected]>",
109
"license": "MIT",
11-
"typesVersions": {
12-
"<4.1": {
13-
"index.d.ts": [
14-
"../../dist/query/react/indexTs40.d.ts"
15-
]
16-
}
17-
}
18-
}
10+
"types": "../../dist/query/react/index.d.ts"
11+
}

scripts/build.ts

+25-54
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,20 @@ import terser from 'terser'
55
import rollup from 'rollup'
66
import path from 'path'
77
import fs from 'fs-extra'
8-
import MagicString from 'magic-string'
9-
import { appendInlineSourceMap, getLocation } from './sourcemap'
108
import ts from 'typescript'
119
import { RawSourceMap, SourceMapConsumer } from 'source-map'
1210
import merge from 'merge-source-map'
13-
import { extractInlineSourcemap, removeInlineSourceMap } from './sourcemap'
14-
import type { BuildOptions, EntryPointOptions } from './types'
15-
import assert from 'assert'
1611
import {
1712
Extractor,
1813
ExtractorConfig,
1914
ExtractorResult,
2015
} from '@microsoft/api-extractor'
2116
import yargs from 'yargs/yargs'
2217

18+
import { extractInlineSourcemap, removeInlineSourceMap } from './sourcemap'
19+
import type { BuildOptions, EntryPointOptions } from './types'
20+
import { appendInlineSourceMap, getLocation } from './sourcemap'
21+
2322
const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms))
2423

2524
const { argv } = yargs(process.argv)
@@ -50,7 +49,6 @@ const buildTargets: BuildOptions[] = [
5049
minify: true,
5150
env: 'production',
5251
},
53-
5452
// ESM, embedded `process`, ES5 syntax: typical Webpack dev
5553
{
5654
format: 'esm',
@@ -66,7 +64,6 @@ const buildTargets: BuildOptions[] = [
6664
minify: false,
6765
env: '',
6866
},
69-
7067
// ESM, pre-compiled "dev", ES2017 syntax: browser development
7168
{
7269
format: 'esm',
@@ -104,7 +101,6 @@ const entryPoints: EntryPointOptions[] = [
104101
entryPoint: 'src/index.ts',
105102
extractionConfig: 'api-extractor.json',
106103
},
107-
// TODO The alternate entry point outputs are likely not importable this way. Need to sort that out.
108104
{
109105
prefix: 'rtk-query',
110106
folder: 'query',
@@ -114,7 +110,7 @@ const entryPoints: EntryPointOptions[] = [
114110
{
115111
prefix: 'rtk-query-react',
116112
folder: 'query/react',
117-
entryPoint: 'src/query/react.ts',
113+
entryPoint: 'src/query/react/index.ts',
118114
extractionConfig: 'api-extractor.query-react.json',
119115
},
120116
]
@@ -149,8 +145,12 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
149145
target: 'esnext',
150146
sourcemap: 'inline',
151147
bundle: true,
152-
external: ['react', 'react-redux'],
153148
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'],
154154
define: env
155155
? {
156156
'process.env.NODE_ENV': JSON.stringify(env),
@@ -209,7 +209,6 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
209209

210210
const mergedSourcemap = merge(sourcemap, result.sourceMapText)
211211
let code = result.outputText
212-
// TODO Is this used at all?
213212
let mapping: RawSourceMap = mergedSourcemap
214213

215214
if (minify) {
@@ -236,39 +235,6 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
236235
console.log('Build artifact:', chunk.path)
237236
await fs.writeFile(chunk.path, code)
238237
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-
*/
272238
}
273239
}
274240

@@ -302,6 +268,7 @@ async function buildUMD(outputPath: string, prefix: string) {
302268
}
303269
}
304270

271+
// Generates an index file to handle importing CJS dev/prod
305272
async function writeEntry(folder: string, prefix: string) {
306273
await fs.writeFile(
307274
path.join('dist', folder, 'index.js'),
@@ -320,7 +287,7 @@ interface BuildArgs {
320287
}
321288

322289
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
324291
await fs.ensureDir(outputDir)
325292

326293
for (let entryPoint of entryPoints) {
@@ -337,16 +304,22 @@ async function main({ skipExtraction = false, local = false }: BuildArgs) {
337304
)
338305
await Promise.all(bundlePromises)
339306
await writeEntry(folder, prefix)
307+
}
340308

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)
347313
await buildUMD(outputPath, entryPoint.prefix)
348314
}
349315

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+
350323
if (!skipExtraction) {
351324
for (let entryPoint of entryPoints) {
352325
// Load and parse the api-extractor.json file
@@ -377,9 +350,7 @@ async function main({ skipExtraction = false, local = false }: BuildArgs) {
377350
}
378351
}
379352
}
380-
381-
382-
// addSubpath()
383353
}
354+
384355
const { skipExtraction, local } = argv
385356
main({ skipExtraction, local })

src/query/core/module.ts

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import {
2525
FullTagDescription,
2626
} from '../endpointDefinitions'
2727
import { CombinedState, QueryKeys, RootState } from './apiState'
28-
import './buildSelectors'
2928
import { Api, Module } from '../apiTypes'
3029
import { onFocus, onFocusLost, onOnline, onOffline } from './setupListeners'
3130
import { buildSlice } from './buildSlice'

src/query/package.json

-11
This file was deleted.

src/query/react/index.ts

+15-19
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
1-
import { reactHooksModuleName, ReactHooksBaseEndpoints } from './module'
1+
import { coreModule, coreModuleName } from '../core/module'
2+
import { buildCreateApi, CreateApi } from '../createApi'
3+
import { reactHooksModule, reactHooksModuleName } from './module'
24

3-
import { EndpointDefinitions } from '../endpointDefinitions'
5+
import { MutationHooks, QueryHooks } from './buildHooks'
6+
import {
7+
EndpointDefinitions,
8+
QueryDefinition,
9+
MutationDefinition,
10+
QueryArgFrom,
11+
} from '../endpointDefinitions'
412
import { BaseQueryFn } from '../baseQueryTypes'
5-
import { TS41Hooks } from './ts41Types'
13+
14+
import { QueryKeys } from '../core/apiState'
15+
import { PrefetchOptions } from '../core/module'
616

717
export * from '..'
818
export { ApiProvider } from './ApiProvider'
919

10-
export { createApi } from './reactHooksCommonExports'
11-
export * from './reactHooksCommonExports'
20+
const createApi = buildCreateApi(coreModule(), reactHooksModule())
1221

13-
declare module '../apiTypes' {
14-
export interface ApiModules<
15-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
16-
BaseQuery extends BaseQueryFn,
17-
Definitions extends EndpointDefinitions,
18-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
19-
ReducerPath extends string,
20-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
21-
TagTypes extends string
22-
> {
23-
[reactHooksModuleName]: ReactHooksBaseEndpoints<Definitions> &
24-
TS41Hooks<Definitions>
25-
}
26-
}
22+
export { createApi, reactHooksModule }

0 commit comments

Comments
 (0)