Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimiry committed Jul 8, 2019
1 parent fc72268 commit a341bb5
Show file tree
Hide file tree
Showing 3 changed files with 165 additions and 153 deletions.
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"electron-log": "3.0.6",
"electron-rpc-api": "5.1.0-beta3",
"electron-unhandled": "2.2.0",
"fast-glob": "3.0.3",
"fast-glob": "3.0.4",
"fs-extra": "8.1.0",
"fs-json-store": "2.3.1",
"fs-json-store-encryption-adapter": "1.3.6",
Expand All @@ -126,24 +126,24 @@
"valid-url": "1.0.9"
},
"devDependencies": {
"@angular-devkit/build-optimizer": "0.800.6",
"@angular/animations": "8.0.3",
"@angular/common": "8.0.3",
"@angular/compiler": "8.0.3",
"@angular/compiler-cli": "8.0.3",
"@angular/core": "8.0.3",
"@angular/forms": "8.0.3",
"@angular/language-service": "8.0.3",
"@angular/platform-browser": "8.0.3",
"@angular/platform-browser-dynamic": "8.0.3",
"@angular/router": "8.0.3",
"@angular-devkit/build-optimizer": "0.801.0",
"@angular/animations": "8.1.0",
"@angular/common": "8.1.0",
"@angular/compiler": "8.1.0",
"@angular/compiler-cli": "8.1.0",
"@angular/core": "8.1.0",
"@angular/forms": "8.1.0",
"@angular/language-service": "8.1.0",
"@angular/platform-browser": "8.1.0",
"@angular/platform-browser-dynamic": "8.1.0",
"@angular/router": "8.1.0",
"@email-securely-app/import-sort-style": "0.1.0",
"@expo/spawn-async": "1.5.0",
"@ng-select/ng-select": "2.20.2",
"@ng-select/ng-select": "2.20.5",
"@ngrx/effects": "8.0.1",
"@ngrx/router-store": "8.0.1",
"@ngrx/store": "8.0.1",
"@ngtools/webpack": "8.0.6",
"@ngtools/webpack": "8.1.0",
"@octokit/rest": "16.28.2",
"@types/angular": "1.6.54",
"@types/archiver": "3.0.0",
Expand All @@ -169,7 +169,7 @@
"@types/path-is-inside": "1.0.0",
"@types/postcss-url": "8.0.1",
"@types/ps-tree": "1.1.0",
"@types/ramda": "0.26.14",
"@types/ramda": "0.26.15",
"@types/randomstring": "1.1.6",
"@types/rimraf": "2.0.2",
"@types/rolling-rate-limiter": "0.1.0",
Expand Down Expand Up @@ -229,7 +229,7 @@
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"less-loader": "5.0.0",
"lint-staged": "9.0.0",
"lint-staged": "9.1.0",
"mini-css-extract-plugin": "0.7.0",
"mkdirp": "0.5.1",
"ndx": "1.0.2",
Expand All @@ -249,7 +249,7 @@
"randomstring": "1.1.5",
"resolve-url-loader": "3.1.0",
"rewiremock": "3.13.7",
"sass": "1.22.1",
"sass": "1.22.3",
"sass-lint": "1.13.1",
"sass-loader": "https://github.com/webpack-contrib/sass-loader#e279f2a129eee0bd0b624b5acd498f23a81ee35e",
"script-loader": "0.7.2",
Expand All @@ -268,7 +268,7 @@
"tslint-consistent-codestyle": "1.15.1",
"tslint-eslint-rules": "5.4.0",
"tslint-rules-bunch": "0.0.8",
"type-fest": "0.5.2",
"type-fest": "0.6.0",
"typescript": "3.5.2",
"uglifyjs-webpack-plugin": "2.1.3",
"url-loader": "2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/@types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Observable} from "rxjs";

import {Omit} from "type-fest";
import {Except} from "type-fest";

declare global {
type Arguments<F extends (...x: any[]) => any> =
Expand All @@ -15,5 +15,5 @@ declare global {

type Mutable<T> = { -readonly [K in keyof T]: T[K]; };

type Skip<T, K extends keyof T> = Omit<T, K>; // eslint-disable-line @typescript-eslint/ban-types
type Skip<T, K extends keyof T> = Except<T, K>; // eslint-disable-line @typescript-eslint/ban-types
}
Loading

0 comments on commit a341bb5

Please sign in to comment.