Skip to content

Commit

Permalink
chore(rxjs): update rxjs to 6.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Sep 24, 2018
1 parent 1b268b2 commit 7ac816c
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 28 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"license-checker": "^20.1.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"rxjs": "~6.2.0",
"rxjs": "6.3.2",
"semver": "^5.3.0",
"source-map": "^0.5.6",
"source-map-support": "^0.5.0",
Expand All @@ -109,6 +109,6 @@
"resolutions": {
"@types/webpack": "4.4.0",
"@types/webpack-dev-server": "2.9.4",
"rxjs": "~6.2.0"
"rxjs": "6.3.2"
}
}
2 changes: 1 addition & 1 deletion packages/angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@schematics/update": "0.0.0",
"inquirer": "6.2.0",
"opn": "5.3.0",
"rxjs": "6.2.2",
"rxjs": "6.3.2",
"semver": "5.5.1",
"symbol-observable": "1.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"@angular-devkit/schematics": "0.0.0",
"@schematics/angular": "0.0.0",
"parse5-html-rewriting-stream": "5.1.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
}
4 changes: 2 additions & 2 deletions packages/angular_devkit/architect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"typings": "src/index.d.ts",
"dependencies": {
"@angular-devkit/core": "0.0.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
}
2 changes: 1 addition & 1 deletion packages/angular_devkit/architect/test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"builders": "builders.json",
"dependencies": {
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
2 changes: 1 addition & 1 deletion packages/angular_devkit/architect_cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"@angular-devkit/architect": "0.0.0",
"minimist": "1.2.0",
"symbol-observable": "1.2.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
4 changes: 2 additions & 2 deletions packages/angular_devkit/benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"minimist": "^1.2.0",
"pidusage": "^2.0.17",
"pidtree": "^0.3.0",
"rxjs": "~6.2.0",
"rxjs": "6.3.2",
"tree-kill": "^1.2.0"
}
}
}
4 changes: 2 additions & 2 deletions packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"postcss-import": "11.1.0",
"postcss-loader": "2.1.6",
"raw-loader": "0.5.1",
"rxjs": "6.2.2",
"rxjs": "6.3.2",
"sass-loader": "7.1.0",
"semver": "5.5.1",
"source-map-support": "0.5.9",
Expand Down Expand Up @@ -87,4 +87,4 @@
"protractor": "~5.4.0",
"zone.js": "^0.8.19"
}
}
}
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_ng_packagr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dependencies": {
"@angular-devkit/architect": "0.0.0",
"@angular-devkit/core": "0.0.0",
"rxjs": "6.2.2",
"rxjs": "6.3.2",
"semver": "5.5.1"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/angular_devkit/build_webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dependencies": {
"@angular-devkit/architect": "0.0.0",
"@angular-devkit/core": "0.0.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
},
"peerDependencies": {
"webpack": "^4.6.0",
Expand All @@ -18,4 +18,4 @@
"webpack": "^4.6.0",
"webpack-dev-server": "^3.1.4"
}
}
}
2 changes: 1 addition & 1 deletion packages/angular_devkit/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"chokidar": "2.0.4",
"fast-json-stable-stringify": "2.0.0",
"source-map": "0.7.3",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
2 changes: 1 addition & 1 deletion packages/angular_devkit/core/src/json/schema/visitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function _visitJsonRecursive<ContextT>(
? value as Observable<JsonValue>
: observableOf(value as JsonValue)
).pipe(
concatMap((value: JsonValue) => {
concatMap((value): Observable<JsonValue> => {
if (Array.isArray(value)) {
return concat(
from(value).pipe(
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/schematics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
],
"dependencies": {
"@angular-devkit/core": "0.0.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
2 changes: 1 addition & 1 deletion packages/angular_devkit/schematics/src/workflow/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export abstract class BaseWorkflow implements Workflow {
map(tree => optimize(tree)),
concatMap((tree: Tree) => {
// Process all sinks.
return of(tree).pipe(
return (of(tree) as any).pipe(
...sinks.map(sink => {
return concatMap((tree: Tree) => {
return concat(
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/schematics_cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"@schematics/schematics": "0.0.0",
"minimist": "1.2.0",
"symbol-observable": "1.2.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
2 changes: 1 addition & 1 deletion packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"homepage": "https://github.com/angular/angular-cli/tree/master/packages/@ngtools/webpack",
"dependencies": {
"@angular-devkit/core": "0.0.0",
"rxjs": "6.2.2",
"rxjs": "6.3.2",
"tree-kill": "1.2.0",
"webpack-sources": "1.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/schematics/update/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"npm-registry-client": "8.6.0",
"semver": "5.5.1",
"semver-intersect": "1.4.0",
"rxjs": "6.2.2"
"rxjs": "6.3.2"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@angular/platform-browser-dynamic": "^6.0.0-rc.0",
"@angular/router": "^6.0.0-rc.0",
"core-js": "^2.4.1",
"rxjs": "~6.2.0",
"rxjs": "6.3.2",
"zone.js": "^0.8.19"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6574,9 +6574,9 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
aproba "^1.1.1"

rxjs@6.2.2, rxjs@^6.0.0, rxjs@^6.1.0, rxjs@~6.2.0:
version "6.2.2"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.2.2.tgz#eb75fa3c186ff5289907d06483a77884586e1cf9"
rxjs@6.3.2, rxjs@^6.0.0, rxjs@^6.1.0:
version "6.3.2"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.2.tgz#6a688b16c4e6e980e62ea805ec30648e1c60907f"
dependencies:
tslib "^1.9.0"

Expand Down

0 comments on commit 7ac816c

Please sign in to comment.