Skip to content

Commit ab5b190

Browse files
alan-agius4vikerman
authored andcommitted
build: update rxjs to 6.5.3
1 parent d9f0bd5 commit ab5b190

File tree

16 files changed

+20
-27
lines changed

16 files changed

+20
-27
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
"pacote": "^9.2.3",
127127
"pidtree": "^0.3.0",
128128
"pidusage": "^2.0.17",
129-
"rxjs": "~6.4.0",
129+
"rxjs": "6.5.3",
130130
"sauce-connect-proxy": "https://saucelabs.com/downloads/sc-4.5.4-linux.tar.gz",
131131
"semver": "6.3.0",
132132
"source-map": "^0.7.3",

packages/angular_devkit/architect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"typings": "src/index.d.ts",
88
"dependencies": {
99
"@angular-devkit/core": "0.0.0",
10-
"rxjs": "6.4.0"
10+
"rxjs": "6.5.3"
1111
},
1212
"builders": "./builders/builders.json"
1313
}

packages/angular_devkit/architect_cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@angular-devkit/core": "0.0.0",
1818
"minimist": "1.2.0",
1919
"progress": "2.0.3",
20-
"rxjs": "6.4.0",
20+
"rxjs": "6.5.3",
2121
"symbol-observable": "1.2.0"
2222
},
2323
"devDependencies": {

packages/angular_devkit/benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"minimist": "1.2.0",
1919
"pidusage": "2.0.17",
2020
"pidtree": "0.3.0",
21-
"rxjs": "6.4.0",
21+
"rxjs": "6.5.3",
2222
"tree-kill": "^1.2.0"
2323
}
2424
}

packages/angular_devkit/build_angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"postcss-loader": "3.0.0",
4242
"raw-loader": "3.1.0",
4343
"regenerator-runtime": "0.13.3",
44-
"rxjs": "6.4.0",
44+
"rxjs": "6.5.3",
4545
"sass": "1.22.12",
4646
"sass-loader": "8.0.0",
4747
"semver": "6.3.0",

packages/angular_devkit/build_angular/src/browser/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ import { NodeJsSyncHost } from '@angular-devkit/core/node';
2727
import { createHash } from 'crypto';
2828
import * as findCacheDirectory from 'find-cache-dir';
2929
import * as fs from 'fs';
30-
import * as os from 'os';
3130
import * as path from 'path';
32-
import { from, of } from 'rxjs';
31+
import { Observable, from, of } from 'rxjs';
3332
import { bufferCount, catchError, concatMap, map, mergeScan, switchMap } from 'rxjs/operators';
3433
import { ScriptTarget } from 'typescript';
3534
import * as webpack from 'webpack';
@@ -192,7 +191,7 @@ export function buildWebpackBrowser(
192191
logging?: WebpackLoggingCallback;
193192
indexHtml?: IndexHtmlTransform;
194193
} = {},
195-
) {
194+
): Observable<BrowserBuilderOutput> {
196195
const host = new NodeJsSyncHost();
197196
const root = normalize(context.workspaceRoot);
198197

packages/angular_devkit/build_angular/src/utils/delete-output-dir.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88
import { Path, resolve, virtualFs } from '@angular-devkit/core';
9-
import { EMPTY } from 'rxjs';
10-
import { concatMap, last } from 'rxjs/operators';
9+
import { EMPTY, Observable } from 'rxjs';
10+
import { concatMap, last, map } from 'rxjs/operators';
1111

1212
/**
1313
* Delete an output directory, but error out if it's the root of the project.
1414
*/
15-
export function deleteOutputDir(root: Path, outputPath: Path, host: virtualFs.Host) {
15+
export function deleteOutputDir(root: Path, outputPath: Path, host: virtualFs.Host): Observable<void> {
1616
const resolvedOutputPath = resolve(root, outputPath);
1717
if (resolvedOutputPath === root) {
1818
throw new Error('Output path MUST not be project root directory!');
@@ -21,5 +21,6 @@ export function deleteOutputDir(root: Path, outputPath: Path, host: virtualFs.Ho
2121
return host.exists(resolvedOutputPath).pipe(
2222
concatMap(exists => exists ? host.delete(resolvedOutputPath) : EMPTY),
2323
last(null, null),
24+
map(() => undefined),
2425
);
2526
}

packages/angular_devkit/build_ng_packagr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"builders": "builders.json",
99
"dependencies": {
1010
"@angular-devkit/architect": "0.0.0",
11-
"rxjs": "6.4.0"
11+
"rxjs": "6.5.3"
1212
},
1313
"peerDependencies": {
1414
"ng-packagr": "^4.0.0 || ^5.0.0"

packages/angular_devkit/build_webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": {
1010
"@angular-devkit/architect": "0.0.0",
1111
"@angular-devkit/core": "0.0.0",
12-
"rxjs": "6.4.0",
12+
"rxjs": "6.5.3",
1313
"webpack-merge": "4.2.2"
1414
},
1515
"peerDependencies": {

packages/angular_devkit/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"ajv": "6.10.2",
1212
"fast-json-stable-stringify": "2.0.0",
1313
"magic-string": "0.25.3",
14-
"rxjs": "6.4.0",
14+
"rxjs": "6.5.3",
1515
"source-map": "0.7.3"
1616
},
1717
"devDependencies": {

0 commit comments

Comments
 (0)