Skip to content

Commit

Permalink
build(dep): update outdated dependencies (#43)
Browse files Browse the repository at this point in the history
* build(dep): bump `@nestjs` to `7.0.3`

* build(dep): bump `@nrwl` to `9.1.2`

* build(dep): bump div dep

* build(dep): bump @angular cdk & material

* build(dep): bump `cypress`, `zone.js` & `jest-preset-angular`

* build(dep): revert to `eslint/parser` `2.23.0`:

- typescript-eslint/typescript-eslint#1746

* refactor(frontend): add comment about not dispatching action with `File`
  • Loading branch information
PhilippeMorier committed Mar 18, 2020
1 parent f0c11db commit c28f7d8
Show file tree
Hide file tree
Showing 5 changed files with 445 additions and 485 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -16,7 +16,7 @@ aliases:
# https://github.com/cypress-io/cypress-docker-images/tree/master/included
- &use_docker_cypress_included
docker:
- image: cypress/included:4.1.0
- image: cypress/included:4.2.0

- &workspace ~/talus

Expand Down
Expand Up @@ -81,6 +81,8 @@ export class SceneViewerContainerComponent implements AfterViewInit {
return;
}

// Can't dispatch action with `File` since it would be an unserializable action.
// Therefore, opening the dialog here and not in an effect.
this.fullscreenOverlayService.open(LoadFileContainerComponent, files[0]);
}

Expand Down
4 changes: 2 additions & 2 deletions libs/shared/src/lib/rxjs/finalize-with-value.ts
@@ -1,11 +1,11 @@
// https://github.com/ReactiveX/rxjs/issues/4803#issuecomment-496711335
import { defer, Observable, ObservedValueOf } from 'rxjs';
import { finalize, tap } from 'rxjs/operators';

// https://github.com/ReactiveX/rxjs/issues/4803#issuecomment-496711335
export function finalizeWithValue<T>(
callback: (value: T) => void,
): (source: Observable<T>) => Observable<ObservedValueOf<Observable<T>>> {
return (source: Observable<T>) =>
return (source: Observable<T>): Observable<T> =>
defer(() => {
let lastValue: T;
return source.pipe(
Expand Down
52 changes: 26 additions & 26 deletions package.json
Expand Up @@ -36,34 +36,34 @@
"private": true,
"dependencies": {
"@angular/animations": "9.0.6",
"@angular/cdk": "9.1.2",
"@angular/cdk": "9.1.3",
"@angular/common": "9.0.6",
"@angular/compiler": "9.0.6",
"@angular/core": "9.0.6",
"@angular/forms": "9.0.6",
"@angular/material": "9.1.2",
"@angular/material": "9.1.3",
"@angular/platform-browser": "9.0.6",
"@angular/platform-browser-dynamic": "9.0.6",
"@angular/router": "9.0.6",
"@babylonjs/core": "4.1.0",
"@babylonjs/loaders": "4.1.0",
"@babylonjs/materials": "4.1.0",
"@nestjs/common": "6.11.11",
"@nestjs/core": "6.11.11",
"@nestjs/platform-express": "6.11.11",
"@nestjs/platform-socket.io": "6.11.11",
"@nestjs/websockets": "6.11.11",
"@nestjs/common": "7.0.3",
"@nestjs/core": "7.0.3",
"@nestjs/platform-express": "7.0.3",
"@nestjs/platform-socket.io": "7.0.3",
"@nestjs/websockets": "7.0.3",
"@ngrx/effects": "9.0.0",
"@ngrx/store": "9.0.0",
"@nrwl/angular": "9.1.0",
"@nrwl/angular": "9.1.2",
"kafkajs": "1.12.0",
"mnemonist": "0.32.0",
"mnemonist": "0.33.1",
"reflect-metadata": "0.1.13",
"rxjs": "6.5.4",
"socket.io": "2.3.0",
"socket.io-client": "2.3.0",
"tslib": "1.11.1",
"zone.js": "0.10.2"
"zone.js": "0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.900.6",
Expand All @@ -72,44 +72,44 @@
"@angular/language-service": "9.0.6",
"@babel/core": "7.8.7",
"@babylonjs/inspector": "4.1.0",
"@nestjs/schematics": "6.9.4",
"@nestjs/testing": "6.11.11",
"@nrwl/cypress": "9.1.0",
"@nrwl/eslint-plugin-nx": "9.1.0",
"@nrwl/jest": "9.1.0",
"@nrwl/nest": "9.1.0",
"@nrwl/node": "9.1.0",
"@nrwl/storybook": "9.1.0",
"@nrwl/workspace": "9.1.0",
"@storybook/addon-knobs": "5.3.14",
"@storybook/angular": "5.3.14",
"@nestjs/schematics": "7.0.0",
"@nestjs/testing": "7.0.3",
"@nrwl/cypress": "9.1.2",
"@nrwl/eslint-plugin-nx": "9.1.2",
"@nrwl/jest": "9.1.2",
"@nrwl/nest": "9.1.2",
"@nrwl/node": "9.1.2",
"@nrwl/storybook": "9.1.2",
"@nrwl/workspace": "9.1.2",
"@storybook/addon-knobs": "5.3.17",
"@storybook/angular": "5.3.17",
"@types/benchmark": "1.0.31",
"@types/jest": "24.9.0",
"@types/node": "13.9.0",
"@types/node": "13.9.1",
"@types/socket.io": "2.1.4",
"@types/socket.io-client": "1.4.32",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.23.0",
"babel-loader": "8.0.6",
"babylonjs": "4.1.0",
"benchmark": "2.1.4",
"codelyzer": "5.2.1",
"cypress": "4.1.0",
"cypress": "4.2.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"gh-pages": "2.2.0",
"jasmine-marbles": "0.6.0",
"jest": "24.9.0",
"jest-junit": "10.0.0",
"jest-preset-angular": "8.0.0",
"jest-preset-angular": "8.1.2",
"junit-xml": "1.2.0",
"prettier": "1.19.1",
"stylelint": "13.2.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-config-standard": "20.0.0",
"stylelint-scss": "3.14.2",
"stylelint-scss": "3.15.0",
"ts-jest": "24.3.0",
"ts-node": "8.6.2",
"tslint": "6.1.0",
Expand Down

0 comments on commit c28f7d8

Please sign in to comment.