Skip to content

Commit

Permalink
fix(deps): update dependency react-dynamic-loadable to v2.0.5 #128
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Dec 25, 2020
1 parent ef89be7 commit 7e4d106
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 17 deletions.
4 changes: 2 additions & 2 deletions example/react-component-tsx/src/react-app-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="react-scripts" />

declare module '*.module.less' {
const classes: { readonly [key: string]: string };
export default classes;
const classes: { readonly [key: string]: string };
export default classes;
}
7 changes: 6 additions & 1 deletion example/react-component-tsx/website/react-app-env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/// <reference types="react-scripts" />
/// <reference types="react-scripts" />

declare module '*.module.less' {
const classes: { readonly [key: string]: string };
export default classes;
}
2 changes: 1 addition & 1 deletion example/rematch-hash-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"history": "4.10.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dynamic-loadable": "2.0.1",
"react-dynamic-loadable": "2.0.5",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2"
},
Expand Down
2 changes: 1 addition & 1 deletion example/rematch-tsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"axios": "0.19.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dynamic-loadable": "2.0.1",
"react-dynamic-loadable": "2.0.5",
"react-redux": "7.2.0",
"react-router-dom": "5.2.0",
"uiw": "4.6.19"
Expand Down
10 changes: 0 additions & 10 deletions example/rematch-tsx/src/react-app-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,3 @@ declare module '*.module.less' {
const classes: { readonly [key: string]: string };
export default classes;
}

declare module 'react-dynamic-loadable' {
interface Options {
models: () => Promise<any>[],
component: () => Promise<any>,
LoadingComponent: () => JSX.Element,
}
function _default(options: Options): void;
export default _default;
}
2 changes: 1 addition & 1 deletion example/rematch-uiw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"history": "5.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dynamic-loadable": "2.0.1",
"react-dynamic-loadable": "2.0.5",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"uiw": "4.6.19"
Expand Down
2 changes: 1 addition & 1 deletion example/rematch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"history": "4.10.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dynamic-loadable": "2.0.1",
"react-dynamic-loadable": "2.0.5",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"redux": "4.0.4"
Expand Down

0 comments on commit 7e4d106

Please sign in to comment.