@angular-devkit/architect 0.1901.3 → 0.1901.5
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.
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* All input types of builders that perform operations on one or multiple sub-builders.
|
|
3
3
|
*/
|
|
4
|
-
export
|
|
4
|
+
export type Schema = {
|
|
5
5
|
builders?: Builder[];
|
|
6
6
|
targets?: Target[];
|
|
7
7
|
[property: string]: any;
|
|
8
|
-
}
|
|
9
|
-
export
|
|
8
|
+
};
|
|
9
|
+
export type Builder = {
|
|
10
10
|
builder: string;
|
|
11
11
|
options?: {
|
|
12
12
|
[key: string]: any;
|
|
13
13
|
};
|
|
14
14
|
[property: string]: any;
|
|
15
|
-
}
|
|
16
|
-
export
|
|
15
|
+
};
|
|
16
|
+
export type Target = {
|
|
17
17
|
overrides?: {
|
|
18
18
|
[key: string]: any;
|
|
19
19
|
};
|
|
20
20
|
target: string;
|
|
21
21
|
[property: string]: any;
|
|
22
|
-
}
|
|
22
|
+
};
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
|
-
import { jobs } from '@angular-devkit/architect';
|
|
9
8
|
import { JsonValue } from '@angular-devkit/core';
|
|
10
9
|
import { Observable } from 'rxjs';
|
|
10
|
+
import { jobs } from '../../src';
|
|
11
11
|
export declare class NodeModuleJobRegistry<MinimumArgumentValueT extends JsonValue = JsonValue, MinimumInputValueT extends JsonValue = JsonValue, MinimumOutputValueT extends JsonValue = JsonValue> implements jobs.Registry<MinimumArgumentValueT, MinimumInputValueT, MinimumOutputValueT> {
|
|
12
12
|
protected _resolve(name: string): string | null;
|
|
13
13
|
/**
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/architect",
|
|
3
|
-
"version": "0.1901.
|
|
3
|
+
"version": "0.1901.5",
|
|
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": "19.1.
|
|
9
|
+
"@angular-devkit/core": "19.1.5",
|
|
10
10
|
"rxjs": "7.8.1"
|
|
11
11
|
},
|
|
12
12
|
"builders": "./builders/builders.json",
|
package/src/builders-schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Schema = {
|
|
2
2
|
/**
|
|
3
3
|
* Link to schema.
|
|
4
4
|
*/
|
|
@@ -7,12 +7,12 @@ export interface Schema {
|
|
|
7
7
|
[key: string]: BuilderValue;
|
|
8
8
|
};
|
|
9
9
|
[property: string]: any;
|
|
10
|
-
}
|
|
10
|
+
};
|
|
11
11
|
export type BuilderValue = Builder | string;
|
|
12
12
|
/**
|
|
13
13
|
* Target options for Builders.
|
|
14
14
|
*/
|
|
15
|
-
export
|
|
15
|
+
export type Builder = {
|
|
16
16
|
/**
|
|
17
17
|
* The builder class module.
|
|
18
18
|
*/
|
|
@@ -30,4 +30,4 @@ export interface Builder {
|
|
|
30
30
|
*/
|
|
31
31
|
schema: string;
|
|
32
32
|
[property: string]: any;
|
|
33
|
-
}
|
|
33
|
+
};
|
package/src/input-schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Schema = {
|
|
2
2
|
currentDirectory: string;
|
|
3
3
|
id: number;
|
|
4
4
|
info: {
|
|
@@ -10,10 +10,10 @@ export interface Schema {
|
|
|
10
10
|
target?: Target;
|
|
11
11
|
workspaceRoot: string;
|
|
12
12
|
[property: string]: any;
|
|
13
|
-
}
|
|
14
|
-
export
|
|
13
|
+
};
|
|
14
|
+
export type Target = {
|
|
15
15
|
configuration?: string;
|
|
16
16
|
project: string;
|
|
17
17
|
target: string;
|
|
18
18
|
[property: string]: any;
|
|
19
|
-
}
|
|
19
|
+
};
|
package/src/output-schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Schema = {
|
|
2
2
|
error?: string;
|
|
3
3
|
info?: {
|
|
4
4
|
[key: string]: any;
|
|
@@ -6,10 +6,10 @@ export interface Schema {
|
|
|
6
6
|
success: boolean;
|
|
7
7
|
target?: Target;
|
|
8
8
|
[property: string]: any;
|
|
9
|
-
}
|
|
10
|
-
export
|
|
9
|
+
};
|
|
10
|
+
export type Target = {
|
|
11
11
|
configuration?: string;
|
|
12
12
|
project?: string;
|
|
13
13
|
target?: string;
|
|
14
14
|
[property: string]: any;
|
|
15
|
-
}
|
|
15
|
+
};
|
package/src/progress-schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Schema = {
|
|
2
2
|
builder: {
|
|
3
3
|
[key: string]: any;
|
|
4
4
|
};
|
|
@@ -12,7 +12,7 @@ export interface Schema {
|
|
|
12
12
|
};
|
|
13
13
|
total?: number;
|
|
14
14
|
[property: string]: any;
|
|
15
|
-
}
|
|
15
|
+
};
|
|
16
16
|
export declare enum State {
|
|
17
17
|
Error = "error",
|
|
18
18
|
Running = "running",
|