From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../@angular-devkit/architect/builders/all-of.js | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js') 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 deleted file mode 100644 index fd085e6a..00000000 --- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js +++ /dev/null @@ -1,48 +0,0 @@ -"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)), - }); - } - })); -}); -- cgit v1.2.3