Skip to content

Commit 0beaf71

Browse files
author
Angular Builds
committed
ab5b1909d build: update rxjs to 6.5.3
1 parent ca76fbc commit 0beaf71

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "@angular-devkit/build-angular",
3-
"version": "0.900.0-next.5+10.8ea892c",
3+
"version": "0.900.0-next.5+12.ab5b190",
44
"description": "Angular Webpack Build Facade",
55
"experimental": true,
66
"main": "src/index.js",
77
"typings": "src/index.d.ts",
88
"builders": "builders.json",
99
"dependencies": {
10-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#8ea892cb7",
11-
"@angular-devkit/build-optimizer": "github:angular/angular-devkit-build-optimizer-builds#8ea892cb7",
12-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#8ea892cb7",
13-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#8ea892cb7",
10+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#ab5b1909d",
11+
"@angular-devkit/build-optimizer": "github:angular/angular-devkit-build-optimizer-builds#ab5b1909d",
12+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#ab5b1909d",
13+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#ab5b1909d",
1414
"@babel/core": "7.6.0",
1515
"@babel/preset-env": "7.6.0",
16-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#8ea892cb7",
16+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#ab5b1909d",
1717
"ajv": "6.10.2",
1818
"autoprefixer": "9.6.1",
1919
"browserslist": "4.7.0",
@@ -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",

‎src/angular-cli-files/models/webpack-configs/common.js

-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,6 @@ function getCommonConfig(wco) {
274274
}
275275
: {
276276
ecma: terserEcma,
277-
pure_getters: buildOptions.buildOptimizer,
278277
// PURE comments work best with 3 passes.
279278
// See https://github.com/webpack/webpack/issues/2899#issuecomment-317425926.
280279
passes: buildOptions.buildOptimizer ? 3 : 1,

‎src/browser/index.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { BuilderContext, BuilderOutput } from '@angular-devkit/architect';
1010
import { WebpackLoggingCallback } from '@angular-devkit/build-webpack';
1111
import { experimental, json, logging, virtualFs } from '@angular-devkit/core';
1212
import * as fs from 'fs';
13+
import { Observable } from 'rxjs';
1314
import * as webpack from 'webpack';
1415
import { IndexHtmlTransform } from '../angular-cli-files/utilities/index-file/write-index-html';
1516
import { ExecutionTransformer } from '../transforms';
@@ -26,6 +27,6 @@ export declare function buildWebpackBrowser(options: BrowserBuilderSchema, conte
2627
webpackConfiguration?: ExecutionTransformer<webpack.Configuration>;
2728
logging?: WebpackLoggingCallback;
2829
indexHtml?: IndexHtmlTransform;
29-
}): import("rxjs").Observable<BrowserBuilderOutput>;
30+
}): Observable<BrowserBuilderOutput>;
3031
declare const _default: import("@angular-devkit/architect/src/internal").Builder<json.JsonObject & BrowserBuilderSchema>;
3132
export default _default;

‎src/utils/delete-output-dir.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88
import { Path, virtualFs } from '@angular-devkit/core';
9+
import { Observable } from 'rxjs';
910
/**
1011
* Delete an output directory, but error out if it's the root of the project.
1112
*/
12-
export declare function deleteOutputDir(root: Path, outputPath: Path, host: virtualFs.Host): import("rxjs").Observable<void | null>;
13+
export declare function deleteOutputDir(root: Path, outputPath: Path, host: virtualFs.Host): Observable<void>;

‎src/utils/delete-output-dir.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ function deleteOutputDir(root, outputPath, host) {
1818
if (resolvedOutputPath === root) {
1919
throw new Error('Output path MUST not be project root directory!');
2020
}
21-
return host.exists(resolvedOutputPath).pipe(operators_1.concatMap(exists => exists ? host.delete(resolvedOutputPath) : rxjs_1.EMPTY), operators_1.last(null, null));
21+
return host.exists(resolvedOutputPath).pipe(operators_1.concatMap(exists => exists ? host.delete(resolvedOutputPath) : rxjs_1.EMPTY), operators_1.last(null, null), operators_1.map(() => undefined));
2222
}
2323
exports.deleteOutputDir = deleteOutputDir;

‎uniqueId

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Mon Sep 23 2019 18:05:59 GMT+0000 (Coordinated Universal Time)
1+
Tue Sep 24 2019 20:48:45 GMT+0000 (Coordinated Universal Time)

0 commit comments

Comments
 (0)