Update ReactRedux template dependencies

This commit is contained in:
Steve Sanderson
2017-07-07 12:08:01 +01:00
parent 2135c30d66
commit 58145d33e3
3 changed files with 709 additions and 96 deletions

View File

@@ -62,7 +62,8 @@ export const actionCreators = {
const unloadedState: WeatherForecastsState = { startDateIndex: null, forecasts: [], isLoading: false };
export const reducer: Reducer<WeatherForecastsState> = (state: WeatherForecastsState, action: KnownAction) => {
export const reducer: Reducer<WeatherForecastsState> = (state: WeatherForecastsState, incomingAction: Action) => {
const action = incomingAction as KnownAction;
switch (action.type) {
case 'REQUEST_WEATHER_FORECASTS':
return {

File diff suppressed because it is too large Load Diff

View File

@@ -3,42 +3,42 @@
"private": true,
"version": "0.0.0",
"dependencies": {
"@types/history": "4.5.1",
"@types/react": "15.0.29",
"@types/react-dom": "15.5.0",
"@types/react-redux": "4.4.40",
"@types/react-router": "4.0.11",
"@types/react-router-dom": "4.0.4",
"@types/react-router-redux": "5.0.1",
"@types/history": "4.6.0",
"@types/react": "15.0.35",
"@types/react-dom": "15.5.1",
"@types/react-redux": "4.4.45",
"@types/react-router": "4.0.12",
"@types/react-router-dom": "4.0.5",
"@types/react-router-redux": "5.0.3",
"@types/webpack": "2.2.15",
"@types/webpack-env": "1.13.0",
"aspnet-prerendering": "^2.0.5",
"aspnet-webpack": "^1.0.29",
"aspnet-webpack-react": "^3.0.0-beta",
"awesome-typescript-loader": "3.1.3",
"awesome-typescript-loader": "3.2.1",
"bootstrap": "3.3.7",
"css-loader": "0.28.1",
"domain-task": "^3.0.2",
"css-loader": "0.28.4",
"domain-task": "^3.0.3",
"event-source-polyfill": "0.0.9",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"history": "4.6.1",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"history": "4.6.3",
"jquery": "3.2.1",
"json-loader": "0.5.4",
"node-noop": "1.0.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "5.0.4",
"react-redux": "5.0.5",
"react-router-dom": "4.1.1",
"react-router-redux": "5.0.0-alpha.6",
"redux": "3.6.0",
"redux": "3.7.1",
"redux-thunk": "2.2.0",
"style-loader": "0.17.0",
"typescript": "2.3.2",
"url-loader": "0.5.8",
"style-loader": "0.18.2",
"typescript": "2.4.1",
"url-loader": "0.5.9",
"webpack": "2.5.1",
"webpack-hot-middleware": "2.18.0",
"webpack-hot-middleware": "2.18.2",
"webpack-merge": "4.1.0"
}
}