Skip to content

Commit dcf0a9c

Browse files
author
Angular Builds
committed
e01b4f6 ci: replace platform linux with windows 11
1 parent 5bef1c5 commit dcf0a9c

7 files changed

+23
-23
lines changed

Diff for: builders/operator-schema.d.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
/**
22
* All input types of builders that perform operations on one or multiple sub-builders.
33
*/
4-
export interface Schema {
4+
export type Schema = {
55
builders?: Builder[];
66
targets?: Target[];
77
[property: string]: any;
8-
}
9-
export interface Builder {
8+
};
9+
export type Builder = {
1010
builder: string;
1111
options?: {
1212
[key: string]: any;
1313
};
1414
[property: string]: any;
15-
}
16-
export interface Target {
15+
};
16+
export type Target = {
1717
overrides?: {
1818
[key: string]: any;
1919
};
2020
target: string;
2121
[property: string]: any;
22-
}
22+
};

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@angular-devkit/architect",
3-
"version": "0.1902.0-next.0+sha-197b770",
3+
"version": "0.1902.0-next.0+sha-e01b4f6",
44
"description": "Angular Build Facade",
55
"experimental": true,
66
"main": "src/index.js",
77
"typings": "src/index.d.ts",
88
"dependencies": {
9-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#197b770",
9+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#e01b4f6",
1010
"rxjs": "7.8.1"
1111
},
1212
"builders": "./builders/builders.json",

Diff for: src/builders-schema.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Schema {
1+
export type Schema = {
22
/**
33
* Link to schema.
44
*/
@@ -7,12 +7,12 @@ export interface Schema {
77
[key: string]: BuilderValue;
88
};
99
[property: string]: any;
10-
}
10+
};
1111
export type BuilderValue = Builder | string;
1212
/**
1313
* Target options for Builders.
1414
*/
15-
export interface Builder {
15+
export type Builder = {
1616
/**
1717
* The builder class module.
1818
*/
@@ -30,4 +30,4 @@ export interface Builder {
3030
*/
3131
schema: string;
3232
[property: string]: any;
33-
}
33+
};

Diff for: src/input-schema.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Schema {
1+
export type Schema = {
22
currentDirectory: string;
33
id: number;
44
info: {
@@ -10,10 +10,10 @@ export interface Schema {
1010
target?: Target;
1111
workspaceRoot: string;
1212
[property: string]: any;
13-
}
14-
export interface Target {
13+
};
14+
export type Target = {
1515
configuration?: string;
1616
project: string;
1717
target: string;
1818
[property: string]: any;
19-
}
19+
};

Diff for: src/output-schema.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
export interface Schema {
1+
export type Schema = {
22
error?: string;
33
info?: {
44
[key: string]: any;
55
};
66
success: boolean;
77
target?: Target;
88
[property: string]: any;
9-
}
10-
export interface Target {
9+
};
10+
export type Target = {
1111
configuration?: string;
1212
project?: string;
1313
target?: string;
1414
[property: string]: any;
15-
}
15+
};

Diff for: src/progress-schema.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Schema {
1+
export type Schema = {
22
builder: {
33
[key: string]: any;
44
};
@@ -12,7 +12,7 @@ export interface Schema {
1212
};
1313
total?: number;
1414
[property: string]: any;
15-
}
15+
};
1616
export declare enum State {
1717
Error = "error",
1818
Running = "running",

Diff for: uniqueId

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
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)

0 commit comments

Comments
 (0)