Skip to content

Commit f535f9b

Browse files
author
Angular Builds
committed
e01b4f6 ci: replace platform linux with windows 11
1 parent 0b3c503 commit f535f9b

File tree

18 files changed

+118
-119
lines changed

18 files changed

+118
-119
lines changed

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@angular-devkit/build-angular",
3-
"version": "19.2.0-next.0+sha-197b770",
3+
"version": "19.2.0-next.0+sha-e01b4f6",
44
"description": "Angular Webpack Build Facade",
55
"main": "src/index.js",
66
"typings": "src/index.d.ts",
77
"builders": "builders.json",
88
"dependencies": {
99
"@ampproject/remapping": "2.3.0",
10-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#197b770",
11-
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#197b770",
12-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#197b770",
13-
"@angular/build": "github:angular/angular-build-builds#197b770",
10+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#e01b4f6",
11+
"@angular-devkit/build-webpack": "github:angular/angular-devkit-build-webpack-builds#e01b4f6",
12+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#e01b4f6",
13+
"@angular/build": "github:angular/angular-build-builds#e01b4f6",
1414
"@babel/core": "7.26.0",
1515
"@babel/generator": "7.26.5",
1616
"@babel/helper-annotate-as-pure": "7.25.9",
@@ -21,7 +21,7 @@
2121
"@babel/preset-env": "7.26.0",
2222
"@babel/runtime": "7.26.0",
2323
"@discoveryjs/json-ext": "0.6.3",
24-
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#197b770",
24+
"@ngtools/webpack": "github:angular/ngtools-webpack-builds#e01b4f6",
2525
"@vitejs/plugin-basic-ssl": "1.2.0",
2626
"ansi-colors": "4.1.3",
2727
"autoprefixer": "10.4.20",
@@ -70,7 +70,7 @@
7070
"@angular/localize": "^19.0.0 || ^19.1.0-next.0",
7171
"@angular/platform-server": "^19.0.0 || ^19.1.0-next.0",
7272
"@angular/service-worker": "^19.0.0 || ^19.1.0-next.0",
73-
"@angular/ssr": "github:angular/angular-ssr-builds#197b770",
73+
"@angular/ssr": "github:angular/angular-ssr-builds#e01b4f6",
7474
"@web/test-runner": "^0.19.0",
7575
"browser-sync": "^3.0.2",
7676
"jest": "^29.5.0",
@@ -91,7 +91,7 @@
9191
"@angular/service-worker": {
9292
"optional": true
9393
},
94-
"@angular/ssr": "github:angular/angular-ssr-builds#197b770",
94+
"@angular/ssr": "github:angular/angular-ssr-builds#e01b4f6",
9595
"@web/test-runner": {
9696
"optional": true
9797
},

src/builders/app-shell/schema.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* App Shell target options for Build Facade.
33
*/
4-
export interface Schema {
4+
export type Schema = {
55
/**
66
* Script that exports the Server AppModule to render. This should be the main JavaScript
77
* outputted by the server target. By default we will resolve the outputPath of the
@@ -33,4 +33,4 @@ export interface Schema {
3333
* as a comma-separated list. Example: `project:target:production,staging`.
3434
*/
3535
serverTarget: string;
36-
}
36+
};

src/builders/browser-esbuild/schema.d.ts

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Browser target options
33
*/
4-
export interface Schema {
4+
export type Schema = {
55
/**
66
* A list of CommonJS or AMD packages that are allowed to be used without a build time
77
* warning. Use `'*'` to allow all.
@@ -178,9 +178,9 @@ export interface Schema {
178178
* TypeScript configuration for Web Worker modules.
179179
*/
180180
webWorkerTsConfig?: string;
181-
}
181+
};
182182
export type AssetPattern = AssetPatternClass | string;
183-
export interface AssetPatternClass {
183+
export type AssetPatternClass = {
184184
/**
185185
* Allow glob patterns to follow symlink directories. This allows subdirectories of the
186186
* symlink to be searched.
@@ -202,8 +202,8 @@ export interface AssetPatternClass {
202202
* Absolute path within the output.
203203
*/
204204
output?: string;
205-
}
206-
export interface Budget {
205+
};
206+
export type Budget = {
207207
/**
208208
* The baseline size for comparison.
209209
*/
@@ -240,7 +240,7 @@ export interface Budget {
240240
* The threshold for warning relative to the baseline (min & max).
241241
*/
242242
warning?: string;
243-
}
243+
};
244244
/**
245245
* The type of budget.
246246
*/
@@ -261,10 +261,10 @@ export declare enum CrossOrigin {
261261
None = "none",
262262
UseCredentials = "use-credentials"
263263
}
264-
export interface FileReplacement {
264+
export type FileReplacement = {
265265
replace: string;
266266
with: string;
267-
}
267+
};
268268
/**
269269
* How to handle duplicate translations for i18n.
270270
*
@@ -279,7 +279,7 @@ export declare enum I18NTranslation {
279279
* Configures the generation of the application's HTML index.
280280
*/
281281
export type IndexUnion = boolean | IndexObject | string;
282-
export interface IndexObject {
282+
export type IndexObject = {
283283
/**
284284
* The path of a file to use for the application's generated HTML index.
285285
*/
@@ -290,7 +290,7 @@ export interface IndexObject {
290290
*/
291291
output?: string;
292292
[property: string]: any;
293-
}
293+
};
294294
/**
295295
* The stylesheet language to use for the application's inline component styles.
296296
*/
@@ -311,7 +311,7 @@ export type Localize = string[] | boolean;
311311
* https://angular.dev/reference/configs/workspace-config#optimization-configuration.
312312
*/
313313
export type OptimizationUnion = boolean | OptimizationClass;
314-
export interface OptimizationClass {
314+
export type OptimizationClass = {
315315
/**
316316
* Enables optimization for fonts. This option requires internet access. `HTTPS_PROXY`
317317
* environment variable can be used to specify a proxy server.
@@ -325,25 +325,25 @@ export interface OptimizationClass {
325325
* Enables optimization of the styles output.
326326
*/
327327
styles?: StylesUnion;
328-
}
328+
};
329329
/**
330330
* Enables optimization for fonts. This option requires internet access. `HTTPS_PROXY`
331331
* environment variable can be used to specify a proxy server.
332332
*/
333333
export type FontsUnion = boolean | FontsClass;
334-
export interface FontsClass {
334+
export type FontsClass = {
335335
/**
336336
* Reduce render blocking requests by inlining external Google Fonts and Adobe Fonts CSS
337337
* definitions in the application's HTML index file. This option requires internet access.
338338
* `HTTPS_PROXY` environment variable can be used to specify a proxy server.
339339
*/
340340
inline?: boolean;
341-
}
341+
};
342342
/**
343343
* Enables optimization of the styles output.
344344
*/
345345
export type StylesUnion = boolean | StylesClass;
346-
export interface StylesClass {
346+
export type StylesClass = {
347347
/**
348348
* Extract and inline critical CSS definitions to improve first paint time.
349349
*/
@@ -353,7 +353,7 @@ export interface StylesClass {
353353
* identifiers and minimizing values.
354354
*/
355355
minify?: boolean;
356-
}
356+
};
357357
/**
358358
* Define the output filename cache-busting hashing mode.
359359
*/
@@ -368,7 +368,7 @@ export declare enum OutputHashing {
368368
*/
369369
export type Polyfills = string[] | string;
370370
export type ScriptElement = ScriptClass | string;
371-
export interface ScriptClass {
371+
export type ScriptClass = {
372372
/**
373373
* The bundle name for this extra entry point.
374374
*/
@@ -381,13 +381,13 @@ export interface ScriptClass {
381381
* The file to include.
382382
*/
383383
input: string;
384-
}
384+
};
385385
/**
386386
* Output source maps for scripts and styles. For more information, see
387387
* https://angular.dev/reference/configs/workspace-config#source-map-configuration.
388388
*/
389389
export type SourceMapUnion = boolean | SourceMapClass;
390-
export interface SourceMapClass {
390+
export type SourceMapClass = {
391391
/**
392392
* Output source maps used for error reporting tools.
393393
*/
@@ -404,18 +404,18 @@ export interface SourceMapClass {
404404
* Resolve vendor packages source maps.
405405
*/
406406
vendor?: boolean;
407-
}
407+
};
408408
/**
409409
* Options to pass to style preprocessors.
410410
*/
411-
export interface StylePreprocessorOptions {
411+
export type StylePreprocessorOptions = {
412412
/**
413413
* Paths to include. Paths will be resolved to workspace root.
414414
*/
415415
includePaths?: string[];
416-
}
416+
};
417417
export type StyleElement = StyleClass | string;
418-
export interface StyleClass {
418+
export type StyleClass = {
419419
/**
420420
* The bundle name for this extra entry point.
421421
*/
@@ -428,4 +428,4 @@ export interface StyleClass {
428428
* The file to include.
429429
*/
430430
input: string;
431-
}
431+
};

0 commit comments

Comments
 (0)