Dependency Upgrade.

This commit is contained in:
Daniel Scalzi 2020-05-11 19:03:28 -04:00
parent 3fcfa492af
commit af6066115c
No known key found for this signature in database
GPG Key ID: D18EA3FB4B142A57
3 changed files with 496 additions and 384 deletions

867
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -35,12 +35,12 @@
"electron-updater": "^4.3.1",
"fs-extra": "^9.0.0",
"github-syntax-dark": "^0.5.0",
"got": "^11.1.1",
"got": "^11.1.3",
"jquery": "^3.5.1",
"moment": "^2.25.3",
"request": "^2.88.2",
"semver": "^7.3.2",
"tar-fs": "^2.0.0",
"tar-fs": "^2.1.0",
"triple-beam": "^1.3.0",
"winreg": "^1.2.4",
"winston": "^3.2.1"
@ -48,15 +48,15 @@
"devDependencies": {
"@babel/preset-react": "^7.9.4",
"@types/adm-zip": "^0.4.33",
"@types/async": "^3.2.1",
"@types/async": "^3.2.2",
"@types/chai": "^4.2.11",
"@types/discord-rpc": "^3.0.3",
"@types/fs-extra": "^8.1.0",
"@types/jquery": "^3.3.38",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.38",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.7",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.8",
"@types/request": "^2.48.4",
"@types/tar-fs": "^2.0.0",
@ -68,7 +68,7 @@
"electron-builder": "^22.6.0",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"eslint": "^6.8.0",
"eslint": "^7.0.0",
"helios-distribution-types": "1.0.0-pre.1",
"mocha": "^7.1.2",
"nock": "^12.0.3",

View File

@ -7,7 +7,6 @@ const defaultView = View.WELCOME
const ViewReducer: Reducer<View, ChangeViewAction> = (state = defaultView, action) => {
switch(action.type) {
case ViewActionType.ChangeView:
console.log('Reducer fired')
return action.payload
}
return state