aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 20:21:29 +0000
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 20:21:29 +0000
commit61cb1570a3410c85a4489b97c172e3a50715f36c (patch)
tree8fe4a5b77ea54bba80abc817ce2c9ef0e79e7e66 /sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js
parent21a53d349788c99d2007cba91a923db982353b31 (diff)
parenta9ee9e0a500a4a15bd0b5dcaf041f827228ed309 (diff)
Merge branch 'researchML' into 'dev'
Research ml See merge request igrannonica/neuronstellar!6
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js
new file mode 100644
index 00000000..fd085e6a
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js
@@ -0,0 +1,48 @@
+"use strict";
+/**
+ * @license
+ * Copyright Google LLC All Rights Reserved.
+ *
+ * Use of this source code is governed by an MIT-style license that can be
+ * found in the LICENSE file at https://angular.io/license
+ */
+Object.defineProperty(exports, "__esModule", { value: true });
+const rxjs_1 = require("rxjs");
+const operators_1 = require("rxjs/operators");
+const src_1 = require("../src");
+exports.default = (0, src_1.createBuilder)((options, context) => {
+ const allRuns = [];
+ context.reportProgress(0, (options.targets ? options.targets.length : 0) +
+ (options.builders ? options.builders.length : 0));
+ if (options.targets) {
+ allRuns.push(...options.targets.map(({ target: targetStr, overrides }, i) => {
+ const [project, target, configuration] = targetStr.split(/:/g, 3);
+ return context
+ .scheduleTarget({ project, target, configuration }, overrides || {})
+ .then((run) => [i, run]);
+ }));
+ }
+ if (options.builders) {
+ allRuns.push(...options.builders.map(({ builder, options }, i) => {
+ return context
+ .scheduleBuilder(builder, options || {})
+ .then((run) => [i, run]);
+ }));
+ }
+ const allResults = allRuns.map(() => null);
+ let n = 0;
+ context.reportProgress(n++, allRuns.length);
+ return (0, rxjs_1.from)(allRuns).pipe((0, operators_1.mergeMap)((runPromise) => (0, rxjs_1.from)(runPromise)), (0, operators_1.mergeMap)(([i, run]) => run.output.pipe((0, operators_1.map)((output) => [i, output]))), (0, operators_1.mergeMap)(([i, output]) => {
+ allResults[i] = output;
+ context.reportProgress(n++, allRuns.length);
+ if (allResults.some((x) => x === null)) {
+ // Some builders aren't done running yet.
+ return rxjs_1.EMPTY;
+ }
+ else {
+ return (0, rxjs_1.of)({
+ success: allResults.every((x) => (x ? x.success : false)),
+ });
+ }
+ }));
+});