@angular-devkit/architect 0.1901.3 → 0.1901.4

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 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
+ };
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@angular-devkit/architect",
3
- "version": "0.1901.3",
3
+ "version": "0.1901.4",
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.3",
9
+ "@angular-devkit/core": "19.1.4",
10
10
  "rxjs": "7.8.1"
11
11
  },
12
12
  "builders": "./builders/builders.json",
@@ -1,4 +1,4 @@
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
+ };
@@ -1,4 +1,4 @@
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
+ };
@@ -1,4 +1,4 @@
1
- export interface Schema {
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 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
+ };
@@ -1,4 +1,4 @@
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",