Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
11
node_modules/@angular-devkit/architect/builders/all-of.d.ts
generated
vendored
Executable file
11
node_modules/@angular-devkit/architect/builders/all-of.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @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.dev/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;
|
47
node_modules/@angular-devkit/architect/builders/all-of.js
generated
vendored
Executable file
47
node_modules/@angular-devkit/architect/builders/all-of.js
generated
vendored
Executable file
|
@ -0,0 +1,47 @@
|
|||
"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.dev/license
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const rxjs_1 = require("rxjs");
|
||||
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, rxjs_1.mergeMap)((runPromise) => (0, rxjs_1.from)(runPromise)), (0, rxjs_1.mergeMap)(([i, run]) => run.output.pipe((0, rxjs_1.map)((output) => [i, output]))), (0, rxjs_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)),
|
||||
});
|
||||
}
|
||||
}));
|
||||
});
|
25
node_modules/@angular-devkit/architect/builders/builders.json
generated
vendored
Executable file
25
node_modules/@angular-devkit/architect/builders/builders.json
generated
vendored
Executable file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"$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)"
|
||||
}
|
||||
}
|
||||
}
|
11
node_modules/@angular-devkit/architect/builders/concat.d.ts
generated
vendored
Executable file
11
node_modules/@angular-devkit/architect/builders/concat.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @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.dev/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;
|
44
node_modules/@angular-devkit/architect/builders/concat.js
generated
vendored
Executable file
44
node_modules/@angular-devkit/architect/builders/concat.js
generated
vendored
Executable file
|
@ -0,0 +1,44 @@
|
|||
"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.dev/license
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const rxjs_1 = require("rxjs");
|
||||
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, rxjs_1.concatMap)((fn) => stop
|
||||
? (0, rxjs_1.of)(null)
|
||||
: (0, rxjs_1.from)(fn()).pipe((0, rxjs_1.switchMap)((run) => (run === null ? (0, rxjs_1.of)(null) : run.output.pipe((0, rxjs_1.first)()))))), (0, rxjs_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, rxjs_1.last)());
|
||||
});
|
9
node_modules/@angular-devkit/architect/builders/false.d.ts
generated
vendored
Executable file
9
node_modules/@angular-devkit/architect/builders/false.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
* @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.dev/license
|
||||
*/
|
||||
declare const _default: import("../src/internal").Builder<import("../../core/src").JsonObject>;
|
||||
export default _default;
|
14
node_modules/@angular-devkit/architect/builders/false.js
generated
vendored
Executable file
14
node_modules/@angular-devkit/architect/builders/false.js
generated
vendored
Executable file
|
@ -0,0 +1,14 @@
|
|||
"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.dev/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.',
|
||||
}));
|
4
node_modules/@angular-devkit/architect/builders/noop-schema.json
generated
vendored
Executable file
4
node_modules/@angular-devkit/architect/builders/noop-schema.json
generated
vendored
Executable file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"type": "object"
|
||||
}
|
22
node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
generated
vendored
Executable file
22
node_modules/@angular-devkit/architect/builders/operator-schema.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* All input types of builders that perform operations on one or multiple sub-builders.
|
||||
*/
|
||||
export interface Schema {
|
||||
builders?: Builder[];
|
||||
targets?: Target[];
|
||||
[property: string]: any;
|
||||
}
|
||||
export interface Builder {
|
||||
builder: string;
|
||||
options?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
[property: string]: any;
|
||||
}
|
||||
export interface Target {
|
||||
overrides?: {
|
||||
[key: string]: any;
|
||||
};
|
||||
target: string;
|
||||
[property: string]: any;
|
||||
}
|
4
node_modules/@angular-devkit/architect/builders/operator-schema.js
generated
vendored
Executable file
4
node_modules/@angular-devkit/architect/builders/operator-schema.js
generated
vendored
Executable file
|
@ -0,0 +1,4 @@
|
|||
"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 });
|
41
node_modules/@angular-devkit/architect/builders/operator-schema.json
generated
vendored
Executable file
41
node_modules/@angular-devkit/architect/builders/operator-schema.json
generated
vendored
Executable file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"$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
|
||||
}
|
||||
}
|
||||
}
|
9
node_modules/@angular-devkit/architect/builders/true.d.ts
generated
vendored
Executable file
9
node_modules/@angular-devkit/architect/builders/true.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
* @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.dev/license
|
||||
*/
|
||||
declare const _default: import("../src/internal").Builder<import("../../core/src").JsonObject>;
|
||||
export default _default;
|
11
node_modules/@angular-devkit/architect/builders/true.js
generated
vendored
Executable file
11
node_modules/@angular-devkit/architect/builders/true.js
generated
vendored
Executable file
|
@ -0,0 +1,11 @@
|
|||
"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.dev/license
|
||||
*/
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const src_1 = require("../src");
|
||||
exports.default = (0, src_1.createBuilder)(() => ({ success: true }));
|
Loading…
Add table
Add a link
Reference in a new issue