Skip to content

Commit 01a1e95

Browse files
committed
Run Prettier on all files
Add `.gitattributes` file to make line endings more consistent (#363) Fix webpack 4 support by setting `target: es2017` for `redux.legacy-esm.js` (#370) Revert "Run Prettier on all files" This reverts commit 39e8094. Run Prettier on all files Add `.gitattributes` file to make line endings more consistent (#363)
1 parent 9114e68 commit 01a1e95

File tree

10 files changed

+71
-68
lines changed

10 files changed

+71
-68
lines changed

.babelrc.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ export default {
77
'@babel/preset-env',
88
{
99
targets: {
10-
ie: 11
10+
ie: 11,
1111
},
1212
loose: true,
13-
modules: cjs ? 'cjs' : false
14-
}
13+
modules: cjs ? 'cjs' : false,
14+
},
1515
],
16-
'@babel/preset-typescript'
16+
'@babel/preset-typescript',
1717
],
18-
plugins: [cjs && ['@babel/transform-modules-commonjs']].filter(Boolean)
18+
plugins: [cjs && ['@babel/transform-modules-commonjs']].filter(Boolean),
1919
}

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
'node-standard',
9999
'node-esm',
100100
'react-native',
101-
'expo'
101+
'expo',
102102
]
103103
steps:
104104
- name: Checkout repo

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import filtersReducer from './features/filters/filtersSlice'
2323
const store = configureStore({
2424
reducer: {
2525
todos: todosReducer,
26-
filters: filtersReducer
27-
}
26+
filters: filtersReducer,
27+
},
2828
})
2929

3030
// The thunk middleware was automatically added
@@ -86,9 +86,9 @@ const store = configureStore({
8686
middleware: getDefaultMiddleware =>
8787
getDefaultMiddleware({
8888
thunk: {
89-
extraArgument: myCustomApiService
90-
}
91-
})
89+
extraArgument: myCustomApiService,
90+
},
91+
}),
9292
})
9393

9494
// later
@@ -110,10 +110,10 @@ const store = configureStore({
110110
thunk: {
111111
extraArgument: {
112112
api: myCustomApiService,
113-
otherValue: 42
114-
}
115-
}
116-
})
113+
otherValue: 42,
114+
},
115+
},
116+
}),
117117
})
118118

119119
// later
@@ -188,7 +188,7 @@ const INCREMENT_COUNTER = 'INCREMENT_COUNTER'
188188

189189
function increment() {
190190
return {
191-
type: INCREMENT_COUNTER
191+
type: INCREMENT_COUNTER,
192192
}
193193
}
194194

@@ -264,7 +264,7 @@ function makeASandwich(forPerson, secretSauce) {
264264
return {
265265
type: 'MAKE_SANDWICH',
266266
forPerson,
267-
secretSauce
267+
secretSauce,
268268
}
269269
}
270270

@@ -273,14 +273,14 @@ function apologize(fromPerson, toPerson, error) {
273273
type: 'APOLOGIZE',
274274
fromPerson,
275275
toPerson,
276-
error
276+
error,
277277
}
278278
}
279279

280280
function withdrawMoney(amount) {
281281
return {
282282
type: 'WITHDRAW',
283-
amount
283+
amount,
284284
}
285285
}
286286

@@ -302,7 +302,7 @@ function makeASandwichWithSecretSauce(forPerson) {
302302
return function (dispatch) {
303303
return fetchSecretSauce().then(
304304
sauce => dispatch(makeASandwich(forPerson, sauce)),
305-
error => dispatch(apologize('The Sandwich Shop', forPerson, error))
305+
error => dispatch(apologize('The Sandwich Shop', forPerson, error)),
306306
)
307307
}
308308
}
@@ -339,16 +339,16 @@ function makeSandwichesForEverybody() {
339339
.then(() =>
340340
Promise.all([
341341
dispatch(makeASandwichWithSecretSauce('Me')),
342-
dispatch(makeASandwichWithSecretSauce('My wife'))
343-
])
342+
dispatch(makeASandwichWithSecretSauce('My wife')),
343+
]),
344344
)
345345
.then(() => dispatch(makeASandwichWithSecretSauce('Our kids')))
346346
.then(() =>
347347
dispatch(
348348
getState().myMoney > 42
349349
? withdrawMoney(42)
350-
: apologize('Me', 'The Sandwich Shop')
351-
)
350+
: apologize('Me', 'The Sandwich Shop'),
351+
),
352352
)
353353
}
354354
}
@@ -359,7 +359,7 @@ function makeSandwichesForEverybody() {
359359
store
360360
.dispatch(makeSandwichesForEverybody())
361361
.then(() =>
362-
response.send(ReactDOMServer.renderToString(<MyApp store={store} />))
362+
response.send(ReactDOMServer.renderToString(<MyApp store={store} />)),
363363
)
364364

365365
// I can also dispatch a thunk async action from a component
@@ -385,7 +385,7 @@ class SandwichShop extends Component {
385385
}
386386

387387
export default connect(state => ({
388-
sandwiches: state.sandwiches
388+
sandwiches: state.sandwiches,
389389
}))(SandwichShop)
390390
```
391391

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export type {
66
ThunkAction,
77
ThunkDispatch,
88
ThunkActionDispatch,
9-
ThunkMiddleware
9+
ThunkMiddleware,
1010
} from './types'
1111

1212
/** A function that accepts a potential "extra argument" value to be injected later,
@@ -15,7 +15,7 @@ export type {
1515
function createThunkMiddleware<
1616
State = any,
1717
BasicAction extends Action = AnyAction,
18-
ExtraThunkArg = undefined
18+
ExtraThunkArg = undefined,
1919
>(extraArgument?: ExtraThunkArg) {
2020
// Standard Redux middleware definition pattern:
2121
// See: https://redux.js.org/tutorials/fundamentals/part-4-store#writing-custom-middleware

src/types.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ import type { Action, AnyAction, Middleware } from 'redux'
1414
export interface ThunkDispatch<
1515
State,
1616
ExtraThunkArg,
17-
BasicAction extends Action
17+
BasicAction extends Action,
1818
> {
1919
// When the thunk middleware is added, `store.dispatch` now has three overloads (NOTE: the order here matters for correct behavior and is very fragile - do not reorder these!):
2020

2121
// 1) The specific thunk function overload
2222
/** Accepts a thunk function, runs it, and returns whatever the thunk itself returns */
2323
<ReturnType>(
24-
thunkAction: ThunkAction<ReturnType, State, ExtraThunkArg, BasicAction>
24+
thunkAction: ThunkAction<ReturnType, State, ExtraThunkArg, BasicAction>,
2525
): ReturnType
2626

2727
// 2) The base overload.
@@ -32,7 +32,7 @@ export interface ThunkDispatch<
3232
// with TS inference ( see https://github.com/microsoft/TypeScript/issues/14107 )
3333
/** A union of the other two overloads for TS inference purposes */
3434
<ReturnType, Action extends BasicAction>(
35-
action: Action | ThunkAction<ReturnType, State, ExtraThunkArg, BasicAction>
35+
action: Action | ThunkAction<ReturnType, State, ExtraThunkArg, BasicAction>,
3636
): Action | ReturnType
3737
}
3838

@@ -53,11 +53,11 @@ export type ThunkAction<
5353
ReturnType,
5454
State,
5555
ExtraThunkArg,
56-
BasicAction extends Action
56+
BasicAction extends Action,
5757
> = (
5858
dispatch: ThunkDispatch<State, ExtraThunkArg, BasicAction>,
5959
getState: () => State,
60-
extraArgument: ExtraThunkArg
60+
extraArgument: ExtraThunkArg,
6161
) => ReturnType
6262

6363
/**
@@ -69,7 +69,7 @@ export type ThunkAction<
6969
* @template ActionCreator Thunk action creator to be wrapped
7070
*/
7171
export type ThunkActionDispatch<
72-
ActionCreator extends (...args: any[]) => ThunkAction<any, any, any, any>
72+
ActionCreator extends (...args: any[]) => ThunkAction<any, any, any, any>,
7373
> = (
7474
...args: Parameters<ActionCreator>
7575
) => ReturnType<ReturnType<ActionCreator>>
@@ -83,7 +83,7 @@ export type ThunkActionDispatch<
8383
export type ThunkMiddleware<
8484
State = any,
8585
BasicAction extends Action = AnyAction,
86-
ExtraThunkArg = undefined
86+
ExtraThunkArg = undefined,
8787
> = Middleware<
8888
ThunkDispatch<State, ExtraThunkArg, BasicAction>,
8989
State,

test/test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('thunk middleware', () => {
55
const doGetState = () => 42
66
const nextHandler = thunkMiddleware({
77
dispatch: doDispatch,
8-
getState: doGetState
8+
getState: doGetState,
99
})
1010

1111
it('must return a function to handle next', () => {
@@ -90,7 +90,7 @@ describe('thunk middleware', () => {
9090
// @ts-ignore
9191
withExtraArgument(extraArg)({
9292
dispatch: doDispatch,
93-
getState: doGetState
93+
getState: doGetState,
9494
})()((dispatch: any, getState: any, arg: any) => {
9595
expect(dispatch).toBe(doDispatch)
9696
expect(getState).toBe(doGetState)

tsup.config.ts

+15-13
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { defineConfig, Options } from 'tsup'
2-
import fs from 'fs'
1+
import type { Options } from 'tsup'
2+
import { defineConfig } from 'tsup'
33

44
export default defineConfig(options => {
55
const commonOptions: Partial<Options> = {
66
entry: {
7-
'redux-thunk': 'src/index.ts'
7+
'redux-thunk': 'src/index.ts',
88
},
9-
...options
9+
...options,
1010
}
1111

1212
return [
@@ -16,19 +16,21 @@ export default defineConfig(options => {
1616
outExtension: () => ({ js: '.mjs' }),
1717
dts: true,
1818
clean: true,
19-
onSuccess() {
20-
// Support Webpack 4 by pointing `"module"` to a file with a `.js` extension
21-
fs.copyFileSync(
22-
'dist/redux-thunk.mjs',
23-
'dist/redux-thunk.legacy-esm.js'
24-
)
25-
}
19+
},
20+
// Support Webpack 4 by pointing `"module"` to a file with a `.js` extension
21+
{
22+
...commonOptions,
23+
format: ['esm'],
24+
target: 'es2017',
25+
dts: false,
26+
outExtension: () => ({ js: '.js' }),
27+
entry: { 'redux-thunk.legacy-esm': 'src/index.ts' },
2628
},
2729
{
2830
...commonOptions,
2931
format: 'cjs',
3032
outDir: './dist/cjs/',
31-
outExtension: () => ({ js: '.cjs' })
32-
}
33+
outExtension: () => ({ js: '.cjs' }),
34+
},
3335
]
3436
})

typescript_test/typescript.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type {
77
ThunkAction,
88
ThunkActionDispatch,
99
ThunkDispatch,
10-
ThunkMiddleware
10+
ThunkMiddleware,
1111
} from '../src/index'
1212

1313
export type State = {
@@ -19,7 +19,7 @@ export type Actions = { type: 'FOO' } | { type: 'BAR'; result: number }
1919
export type ThunkResult<R> = ThunkAction<R, State, undefined, Actions>
2020

2121
export const initialState: State = {
22-
foo: 'foo'
22+
foo: 'foo',
2323
}
2424

2525
export function fakeReducer(state: State = initialState): State {
@@ -28,7 +28,7 @@ export function fakeReducer(state: State = initialState): State {
2828

2929
export const store = createStore(
3030
fakeReducer,
31-
applyMiddleware(thunk as ThunkMiddleware<State, Actions>)
31+
applyMiddleware(thunk as ThunkMiddleware<State, Actions>),
3232
)
3333

3434
store.dispatch(dispatch => {
@@ -70,8 +70,8 @@ store.dispatch(testGetState())
7070
const storeThunkArg = createStore(
7171
fakeReducer,
7272
applyMiddleware(
73-
withExtraArgument('bar') as ThunkMiddleware<State, Actions, string>
74-
)
73+
withExtraArgument('bar') as ThunkMiddleware<State, Actions, string>,
74+
),
7575
)
7676
storeThunkArg.dispatch({ type: 'FOO' })
7777

@@ -85,23 +85,23 @@ storeThunkArg.dispatch((dispatch, getState, extraArg) => {
8585
})
8686

8787
const callDispatchAsync_anyAction = (
88-
dispatch: ThunkDispatch<State, undefined, any>
88+
dispatch: ThunkDispatch<State, undefined, any>,
8989
) => {
9090
const asyncThunk = (): ThunkResult<Promise<void>> => () =>
91-
({} as Promise<void>)
91+
({}) as Promise<void>
9292
dispatch(asyncThunk()).then(() => console.log('done'))
9393
}
9494
const callDispatchAsync_specificActions = (
95-
dispatch: ThunkDispatch<State, undefined, Actions>
95+
dispatch: ThunkDispatch<State, undefined, Actions>,
9696
) => {
9797
const asyncThunk = (): ThunkResult<Promise<void>> => () =>
98-
({} as Promise<void>)
98+
({}) as Promise<void>
9999
dispatch(asyncThunk()).then(() => console.log('done'))
100100
}
101101
const callDispatchAny = (
102-
dispatch: ThunkDispatch<State, undefined, Actions>
102+
dispatch: ThunkDispatch<State, undefined, Actions>,
103103
) => {
104-
const asyncThunk = (): any => () => ({} as Promise<void>)
104+
const asyncThunk = (): any => () => ({}) as Promise<void>
105105
dispatch(asyncThunk()) // result is any
106106
.then(() => console.log('done'))
107107
}
@@ -127,9 +127,9 @@ const actions: ActionDispatchs = bindActionCreators(
127127
{
128128
anotherThunkAction,
129129
promiseThunkAction,
130-
standardAction
130+
standardAction,
131131
},
132-
store.dispatch
132+
store.dispatch,
133133
)
134134

135135
actions.anotherThunkAction() === 'hello'
@@ -152,7 +152,7 @@ function testIssue248() {
152152
const dispatch: ThunkDispatch<any, unknown, AnyAction> = undefined as any
153153

154154
function dispatchWrap(
155-
action: Action | ThunkAction<any, any, unknown, AnyAction>
155+
action: Action | ThunkAction<any, any, unknown, AnyAction>,
156156
) {
157157
// Should not have an error here thanks to the extra union overload
158158
dispatch(action)

vitest.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ export default defineConfig({
88
'redux-thunk': './src/index.ts', // @remap-prod-remove-line
99

1010
// this mapping is disabled as we want `dist` imports in the tests only to be used for "type-only" imports which don't play a role for jest
11-
'@internal/': './src/'
11+
'@internal/': './src/',
1212
},
1313
deps: {
14-
interopDefault: true
15-
}
16-
}
14+
interopDefault: true,
15+
},
16+
},
1717
})

0 commit comments

Comments
 (0)