File tree 7 files changed +23
-23
lines changed
7 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* All input types of builders that perform operations on one or multiple sub-builders.
3
3
*/
4
- export interface Schema {
4
+ export type Schema = {
5
5
builders ?: Builder [ ] ;
6
6
targets ?: Target [ ] ;
7
7
[ property : string ] : any ;
8
- }
9
- export interface Builder {
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 interface Target {
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
+ } ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-devkit/architect" ,
3
- "version" : " 0.1902.0-next.0+sha-197b770 " ,
3
+ "version" : " 0.1902.0-next.0+sha-e01b4f6 " ,
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" : " github:angular/angular-devkit-core-builds#197b770 " ,
9
+ "@angular-devkit/core" : " github:angular/angular-devkit-core-builds#e01b4f6 " ,
10
10
"rxjs" : " 7.8.1"
11
11
},
12
12
"builders" : " ./builders/builders.json" ,
Original file line number Diff line number Diff line change 1
- export interface Schema {
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 interface Builder {
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
+ } ;
Original file line number Diff line number Diff line change 1
- export interface Schema {
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 interface Target {
13
+ } ;
14
+ export type Target = {
15
15
configuration ?: string ;
16
16
project : string ;
17
17
target : string ;
18
18
[ property : string ] : any ;
19
- }
19
+ } ;
Original file line number Diff line number Diff line change 1
- export interface Schema {
1
+ export type Schema = {
2
2
error ?: string ;
3
3
info ?: {
4
4
[ key : string ] : any ;
5
5
} ;
6
6
success : boolean ;
7
7
target ?: Target ;
8
8
[ property : string ] : any ;
9
- }
10
- export interface Target {
9
+ } ;
10
+ export type Target = {
11
11
configuration ?: string ;
12
12
project ?: string ;
13
13
target ?: string ;
14
14
[ property : string ] : any ;
15
- }
15
+ } ;
Original file line number Diff line number Diff line change 1
- export interface Schema {
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" ,
Original file line number Diff line number Diff line change 1
- Tue Jan 21 2025 15:25:29 GMT+0000 (Coordinated Universal Time)
1
+ Tue Jan 21 2025 15:51:27 GMT+0000 (Coordinated Universal Time)
You can’t perform that action at this time.
0 commit comments