@angular-devkit/architect 0.1401.0-next.1 → 0.1401.0-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@angular-devkit/architect",
3
- "version": "0.1401.0-next.1",
3
+ "version": "0.1401.0-next.4",
4
4
  "description": "Angular Build Facade",
5
5
  "experimental": true,
6
6
  "main": "src/index.js",
7
7
  "typings": "src/index.d.ts",
8
8
  "dependencies": {
9
- "@angular-devkit/core": "14.1.0-next.1",
9
+ "@angular-devkit/core": "14.1.0-next.4",
10
10
  "rxjs": "6.6.7"
11
11
  },
12
12
  "builders": "./builders/builders.json",
@@ -179,6 +179,10 @@ function createBuilder(fn) {
179
179
  .pipe((0, operators_1.tap)(() => {
180
180
  progress({ state: api_1.BuilderProgressState.Running, current: total }, context);
181
181
  progress({ state: api_1.BuilderProgressState.Stopped }, context);
182
+ }), (0, operators_1.mergeMap)(async (value) => {
183
+ // Allow the log queue to flush
184
+ await new Promise(setImmediate);
185
+ return value;
182
186
  }))
183
187
  .subscribe((message) => observer.next(message), (error) => observer.error(error), () => observer.complete()));
184
188
  }