File tree Expand file tree Collapse file tree 5 files changed +73
-320
lines changed
rtk-query-codegen-openapi Expand file tree Collapse file tree 5 files changed +73
-320
lines changed Original file line number Diff line number Diff line change 36
36
"eslint-plugin-node" : " ^11.1.0" ,
37
37
"eslint-plugin-prettier" : " ^5.1.3" ,
38
38
"prettier" : " ^3.2.5" ,
39
- "vitest" : " ^1.2.1 "
39
+ "vitest" : " ^1.6.0 "
40
40
},
41
41
"engines" : {
42
42
"node" : " >= 16"
Original file line number Diff line number Diff line change 52
52
"pretty-quick" : " ^4.0.0" ,
53
53
"rimraf" : " ^5.0.5" ,
54
54
"ts-node" : " ^10.9.2" ,
55
- "vitest" : " ^1.2.2 " ,
55
+ "vitest" : " ^1.6.0 " ,
56
56
"yalc" : " ^1.0.0-pre.47"
57
57
},
58
58
"dependencies" : {
Original file line number Diff line number Diff line change 93
93
"tsx" : " ^3.12.2" ,
94
94
"typescript" : " ^5.4.5" ,
95
95
"vite-tsconfig-paths" : " ^4.3.1" ,
96
- "vitest" : " ^1.1.3 " ,
96
+ "vitest" : " ^1.6.0 " ,
97
97
"yargs" : " ^15.3.1"
98
98
},
99
99
"scripts" : {
Original file line number Diff line number Diff line change 1
1
import type {
2
- Action ,
3
- Middleware ,
4
2
Reducer ,
5
3
ReducersMapObject ,
6
- Store ,
4
+ Middleware ,
5
+ Action ,
7
6
StoreEnhancer ,
7
+ Store ,
8
8
UnknownAction ,
9
9
} from 'redux'
10
10
import {
11
11
applyMiddleware ,
12
- combineReducers ,
13
- compose ,
14
12
createStore ,
13
+ compose ,
14
+ combineReducers ,
15
15
isPlainObject ,
16
16
} from 'redux'
17
17
import type { DevToolsEnhancerOptions as DevToolsOptions } from './devtoolsExtension'
18
18
import { composeWithDevTools } from './devtoolsExtension'
19
- import type { GetDefaultEnhancers } from './getDefaultEnhancers'
20
- import { buildGetDefaultEnhancers } from './getDefaultEnhancers'
19
+
21
20
import type {
22
- GetDefaultMiddleware ,
23
21
ThunkMiddlewareFor ,
22
+ GetDefaultMiddleware ,
24
23
} from './getDefaultMiddleware'
25
24
import { buildGetDefaultMiddleware } from './getDefaultMiddleware'
26
25
import type {
27
26
ExtractDispatchExtensions ,
28
- ExtractStateExtensions ,
29
27
ExtractStoreExtensions ,
28
+ ExtractStateExtensions ,
30
29
UnknownIfNonSpecific ,
31
30
} from './tsHelpers'
32
31
import type { Tuple } from './utils'
32
+ import type { GetDefaultEnhancers } from './getDefaultEnhancers'
33
+ import { buildGetDefaultEnhancers } from './getDefaultEnhancers'
33
34
34
35
/**
35
36
* Options for `configureStore()`.
You can’t perform that action at this time.
0 commit comments