Skip to content

Commit aa42db6

Browse files
committed
updated "typesafe-actions" to stable
1 parent e234bd5 commit aa42db6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Diff for: playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"reselect": "3.0.1",
3131
"rxjs": "5.5.6",
3232
"tslib": "1.8.1",
33-
"typesafe-actions": "1.0.0-rc.1",
33+
"typesafe-actions": "1.0.0",
3434
"uuid": "3.1.0"
3535
},
3636
"devDependencies": {

Diff for: playground/src/hoc/with-error-boundary.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ import { Diff as Subtract } from 'react-redux-typescript';
44
const MISSING_ERROR = 'Error was swallowed during propagation.';
55

66
interface WrappedComponentProps {
7-
onReset?: () => any,
7+
onReset?: () => any;
88
}
99

1010
export const withErrorBoundary = <P extends WrappedComponentProps>(
11-
WrappedComponent: React.ComponentType<P>,
11+
WrappedComponent: React.ComponentType<P>
1212
) => {
1313
interface Props { }
1414
interface State {
15-
error: Error | null | undefined,
15+
error: Error | null | undefined;
1616
}
1717

1818
return class WithErrorBoundary extends React.Component<Subtract<P, WrappedComponentProps> & Props, State> {

Diff for: playground/yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -6050,9 +6050,9 @@ typedarray@^0.0.6:
60506050
version "0.0.6"
60516051
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
60526052

6053-
typesafe-actions@1.0.0-rc.1:
6054-
version "1.0.0-rc.1"
6055-
resolved "https://registry.yarnpkg.com/typesafe-actions/-/typesafe-actions-1.0.0-rc.1.tgz#170dd8501f6a444cfc0d286960c4693fe13410a4"
6053+
typesafe-actions@1.0.0:
6054+
version "1.0.0"
6055+
resolved "https://registry.yarnpkg.com/typesafe-actions/-/typesafe-actions-1.0.0.tgz#9bd4b9e250399e818fd3dbf0235fa21972cda509"
60566056

60576057
typescript@2.7.0-dev.20171216:
60586058
version "2.7.0-dev.20171216"

0 commit comments

Comments
 (0)