aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
commit6555fb80fdd8f6a5d201efadec3189d1244830a0 (patch)
treec1aa1c5aedc634ad1ea7fad4847884d559b51290 /sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Izbrisala bin, obj i node-modules.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.d.ts11
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.js48
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/builders.json25
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.d.ts11
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.js45
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.d.ts9
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.js14
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/noop-schema.json4
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts19
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.js4
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.json41
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.d.ts9
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.js11
13 files changed, 0 insertions, 251 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.d.ts
deleted file mode 100644
index 1db82959..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/all-of.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-/**
- * @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
- */
-import { json } from '@angular-devkit/core';
-import { Schema as OperatorSchema } from './operator-schema';
-declare const _default: import("../src/internal").Builder<json.JsonObject & OperatorSchema>;
-export default _default;
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)),
- });
- }
- }));
-});
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/builders.json b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/builders.json
deleted file mode 100644
index 5bbff828..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/builders.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "$schema": "../src/builders-schema.json",
- "builders": {
- "true": {
- "implementation": "./true",
- "schema": "./noop-schema.json",
- "description": "Always succeed."
- },
- "false": {
- "implementation": "./false",
- "schema": "./noop-schema.json",
- "description": "Always fails."
- },
- "allOf": {
- "implementation": "./all-of",
- "schema": "./operator-schema.json",
- "description": "A builder that executes many builders in parallel, and succeed if both succeeds."
- },
- "concat": {
- "implementation": "./concat",
- "schema": "./operator-schema.json",
- "description": "A builder that executes many builders one after the other, and stops when one fail. It will succeed if all builders succeeds (and return the last output)"
- }
- }
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.d.ts
deleted file mode 100644
index 1db82959..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-/**
- * @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
- */
-import { json } from '@angular-devkit/core';
-import { Schema as OperatorSchema } from './operator-schema';
-declare const _default: import("../src/internal").Builder<json.JsonObject & OperatorSchema>;
-export default _default;
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.js
deleted file mode 100644
index 747fefac..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/concat.js
+++ /dev/null
@@ -1,45 +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 }) => {
- const [project, target, configuration] = targetStr.split(/:/g, 3);
- return () => context.scheduleTarget({ project, target, configuration }, overrides || {});
- }));
- }
- if (options.builders) {
- allRuns.push(...options.builders.map(({ builder, options }) => {
- return () => context.scheduleBuilder(builder, options || {});
- }));
- }
- let stop = null;
- let i = 0;
- context.reportProgress(i++, allRuns.length);
- return (0, rxjs_1.from)(allRuns).pipe((0, operators_1.concatMap)((fn) => stop
- ? (0, rxjs_1.of)(null)
- : (0, rxjs_1.from)(fn()).pipe((0, operators_1.switchMap)((run) => (run === null ? (0, rxjs_1.of)(null) : run.output.pipe((0, operators_1.first)()))))), (0, operators_1.map)((output) => {
- context.reportProgress(i++, allRuns.length);
- if (output === null || stop !== null) {
- return stop || { success: false };
- }
- else if (output.success === false) {
- return (stop = output);
- }
- else {
- return output;
- }
- }), (0, operators_1.last)());
-});
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.d.ts
deleted file mode 100644
index cef2dd8a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-/**
- * @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
- */
-declare const _default: import("../src/internal").Builder<import("../../core/src").JsonObject>;
-export default _default;
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.js
deleted file mode 100644
index 590e6c17..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/false.js
+++ /dev/null
@@ -1,14 +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 src_1 = require("../src");
-exports.default = (0, src_1.createBuilder)(() => ({
- success: false,
- error: 'False builder always errors.',
-}));
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/noop-schema.json b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/noop-schema.json
deleted file mode 100644
index 77dd56a3..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/noop-schema.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema",
- "type": "object"
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
deleted file mode 100644
index 9bc83751..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * All input types of builders that perform operations on one or multiple sub-builders.
- */
-export interface Schema {
- builders?: Builder[];
- targets?: Target[];
-}
-export interface Builder {
- builder: string;
- options?: {
- [key: string]: any;
- };
-}
-export interface Target {
- overrides?: {
- [key: string]: any;
- };
- target: string;
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.js
deleted file mode 100644
index 4fb6d3d1..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.js
+++ /dev/null
@@ -1,4 +0,0 @@
-"use strict";
-// THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
-// CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
-Object.defineProperty(exports, "__esModule", { value: true });
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.json b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.json
deleted file mode 100644
index 1de86018..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/operator-schema.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema",
- "description": "All input types of builders that perform operations on one or multiple sub-builders.",
- "type": "object",
- "properties": {
- "builders": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "builder": {
- "type": "string",
- "pattern": ".*:.*"
- },
- "options": {
- "type": "object"
- }
- },
- "required": ["builder"]
- },
- "minItems": 1
- },
- "targets": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "target": {
- "type": "string",
- "pattern": ".*:.*"
- },
- "overrides": {
- "type": "object"
- }
- },
- "required": ["target"]
- },
- "minItems": 1
- }
- }
-}
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.d.ts
deleted file mode 100644
index cef2dd8a..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-/**
- * @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
- */
-declare const _default: import("../src/internal").Builder<import("../../core/src").JsonObject>;
-export default _default;
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.js
deleted file mode 100644
index 32a3fbcc..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/builders/true.js
+++ /dev/null
@@ -1,11 +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 src_1 = require("../src");
-exports.default = (0, src_1.createBuilder)(() => ({ success: true }));