@angular-devkit/build-angular
Advanced tools
Comparing version 19.1.4 to 19.1.5
{ | ||
"name": "@angular-devkit/build-angular", | ||
"version": "19.1.4", | ||
"version": "19.1.5", | ||
"description": "Angular Webpack Build Facade", | ||
@@ -10,6 +10,6 @@ "main": "src/index.js", | ||
"@ampproject/remapping": "2.3.0", | ||
"@angular-devkit/architect": "0.1901.4", | ||
"@angular-devkit/build-webpack": "0.1901.4", | ||
"@angular-devkit/core": "19.1.4", | ||
"@angular/build": "19.1.4", | ||
"@angular-devkit/architect": "0.1901.5", | ||
"@angular-devkit/build-webpack": "0.1901.5", | ||
"@angular-devkit/core": "19.1.5", | ||
"@angular/build": "19.1.5", | ||
"@babel/core": "7.26.0", | ||
@@ -25,3 +25,3 @@ "@babel/generator": "7.26.3", | ||
"@discoveryjs/json-ext": "0.6.3", | ||
"@ngtools/webpack": "19.1.4", | ||
"@ngtools/webpack": "19.1.5", | ||
"@vitejs/plugin-basic-ssl": "1.2.0", | ||
@@ -75,3 +75,3 @@ "ansi-colors": "4.1.3", | ||
"@angular/service-worker": "^19.0.0", | ||
"@angular/ssr": "^19.1.4", | ||
"@angular/ssr": "^19.1.5", | ||
"@web/test-runner": "^0.19.0", | ||
@@ -84,3 +84,3 @@ "browser-sync": "^3.0.2", | ||
"protractor": "^7.0.0", | ||
"tailwindcss": "^2.0.0 || ^3.0.0", | ||
"tailwindcss": "^2.0.0 || ^3.0.0 || ^4.0.0", | ||
"typescript": ">=5.5 <5.8" | ||
@@ -87,0 +87,0 @@ }, |
@@ -27,3 +27,3 @@ /** | ||
}; | ||
declare const _default: import("@angular-devkit/architect").Builder<BrowserBuilderOptions & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<BrowserBuilderOptions & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -41,3 +41,3 @@ /** | ||
}): Observable<BrowserBuilderOutput>; | ||
declare const _default: import("@angular-devkit/architect").Builder<BrowserBuilderSchema & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<BrowserBuilderSchema & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -87,2 +87,9 @@ "use strict"; | ||
normalizedOptions.hmr ??= normalizedOptions.liveReload; | ||
// New build system uses Vite's allowedHost option convention of true for disabling host checks | ||
if (normalizedOptions.disableHostCheck) { | ||
normalizedOptions.allowedHosts = true; | ||
} | ||
else { | ||
normalizedOptions.allowedHosts ??= []; | ||
} | ||
return (0, rxjs_1.defer)(() => Promise.all([Promise.resolve().then(() => __importStar(require('@angular/build/private'))), Promise.resolve().then(() => __importStar(require('../browser-esbuild')))])).pipe((0, rxjs_1.switchMap)(([{ serveWithVite, buildApplicationInternal }, { convertBrowserOptions }]) => serveWithVite(normalizedOptions, builderName, (options, context, codePlugins) => { | ||
@@ -89,0 +96,0 @@ return builderName === '@angular-devkit/build-angular:browser-esbuild' |
@@ -12,4 +12,4 @@ /** | ||
export { type DevServerBuilderOptions, type DevServerBuilderOutput, execute as executeDevServerBuilder, }; | ||
declare const _default: import("@angular-devkit/architect").Builder<DevServerBuilderOptions & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<DevServerBuilderOptions & import("@angular-devkit/core").JsonObject>; | ||
export default _default; | ||
export { execute as executeDevServer }; |
@@ -6,4 +6,3 @@ /** | ||
/** | ||
* List of hosts that are allowed to access the dev server. This option has no effect when | ||
* using the 'application' or other esbuild-based builders. | ||
* List of hosts that are allowed to access the dev server. | ||
*/ | ||
@@ -18,4 +17,3 @@ allowedHosts?: string[]; | ||
/** | ||
* Don't verify connected clients are part of allowed hosts. This option has no effect when | ||
* using the 'application' or other esbuild-based builders. | ||
* Don't verify connected clients are part of allowed hosts. | ||
*/ | ||
@@ -22,0 +20,0 @@ disableHostCheck?: boolean; |
@@ -70,3 +70,3 @@ { | ||
"type": "array", | ||
"description": "List of hosts that are allowed to access the dev server. This option has no effect when using the 'application' or other esbuild-based builders.", | ||
"description": "List of hosts that are allowed to access the dev server.", | ||
"default": [], | ||
@@ -83,3 +83,3 @@ "items": { | ||
"type": "boolean", | ||
"description": "Don't verify connected clients are part of allowed hosts. This option has no effect when using the 'application' or other esbuild-based builders.", | ||
"description": "Don't verify connected clients are part of allowed hosts.", | ||
"default": false | ||
@@ -86,0 +86,0 @@ }, |
@@ -11,3 +11,3 @@ /** | ||
export { ExtractI18nBuilderOptions, execute }; | ||
declare const _default: import("@angular-devkit/architect").Builder<ExtractI18nBuilderOptions & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<ExtractI18nBuilderOptions & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -10,3 +10,3 @@ /** | ||
/** Main execution function for the Jest builder. */ | ||
declare const _default: import("@angular-devkit/architect").Builder<JestBuilderSchema & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<JestBuilderSchema & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -16,3 +16,3 @@ /** | ||
export type { NgPackagrBuilderOptions }; | ||
declare const _default: import("@angular-devkit/architect").Builder<Record<string, string> & NgPackagrBuilderOptions & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<Record<string, string> & NgPackagrBuilderOptions & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -18,3 +18,3 @@ /** | ||
export declare function execute(options: PrerenderBuilderOptions, context: BuilderContext): Promise<PrerenderBuilderOutput>; | ||
declare const _default: import("@angular-devkit/architect").Builder<Schema & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<Schema & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -9,3 +9,3 @@ /** | ||
import { Schema as ProtractorBuilderOptions } from '../protractor/schema'; | ||
declare const _default: import("@angular-devkit/architect").Builder<ProtractorBuilderOptions & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<ProtractorBuilderOptions & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -31,3 +31,3 @@ /** | ||
}): Observable<ServerBuilderOutput>; | ||
declare const _default: import("@angular-devkit/architect").Builder<ServerBuilderOptions & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<ServerBuilderOptions & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -9,3 +9,3 @@ /** | ||
import { Schema } from './schema'; | ||
declare const _default: import("@angular-devkit/architect").Builder<Schema & import("../../../../core").JsonObject>; | ||
declare const _default: import("@angular-devkit/architect").Builder<Schema & import("@angular-devkit/core").JsonObject>; | ||
export default _default; |
@@ -20,2 +20,5 @@ "use strict"; | ||
declarationMap: false, | ||
// Disable removing of comments as TS is quite aggressive with these and can | ||
// remove important annotations, such as /* @__PURE__ */. | ||
removeComments: false, | ||
}; | ||
@@ -22,0 +25,0 @@ if (tsConfig.options.target === undefined || tsConfig.options.target < typescript_1.ScriptTarget.ES2022) { |
@@ -13,3 +13,3 @@ "use strict"; | ||
/** Version placeholder is replaced during the build process with actual package version */ | ||
const VERSION = '19.1.4'; | ||
const VERSION = '19.1.5'; | ||
function hasCacheMetadata(value) { | ||
@@ -16,0 +16,0 @@ return (!!value && |
751479
18492
+ Added@angular-devkit/architect@0.1901.5(transitive)
+ Added@angular-devkit/build-webpack@0.1901.5(transitive)
+ Added@angular-devkit/core@19.1.5(transitive)
+ Added@angular/build@19.1.5(transitive)
+ Added@ngtools/webpack@19.1.5(transitive)
+ Added@types/mime@1.3.5(transitive)
+ Added@web/parse5-utils@2.1.0(transitive)
+ Addedget-stream@6.0.1(transitive)
+ Addedhttp-errors@1.8.1(transitive)
+ Addedis-stream@2.0.1(transitive)
+ Addedkoa@2.15.4(transitive)
+ Addedkoa-etag@4.0.0(transitive)
+ Addedlocate-path@5.0.07.2.0(transitive)
+ Addedobject-assign@4.1.1(transitive)
+ Addedpath-exists@4.0.05.0.0(transitive)
+ Addedtailwindcss@4.0.7(transitive)
+ Addedvite@6.0.11(transitive)
- Removed@alloc/quick-lru@5.2.0(transitive)
- Removed@angular-devkit/architect@0.1901.4(transitive)
- Removed@angular-devkit/build-webpack@0.1901.4(transitive)
- Removed@angular-devkit/core@19.1.4(transitive)
- Removed@angular/build@19.1.4(transitive)
- Removed@ngtools/webpack@19.1.4(transitive)
- Removed@rollup/plugin-node-resolve@15.3.1(transitive)
- Removed@sinonjs/commons@3.0.1(transitive)
- Removedarg@5.0.2(transitive)
- Removedbrace-expansion@2.0.1(transitive)
- Removedcamelcase-css@2.0.1(transitive)
- Removedcommander@4.1.1(transitive)
- Removeddefault-gateway@6.0.3(transitive)
- Removeddidyoumean@1.2.2(transitive)
- Removeddlv@1.1.3(transitive)
- Removedestree-walker@2.0.2(transitive)
- Removedforeground-child@3.3.0(transitive)
- Removedglob@10.4.5(transitive)
- Removedis-core-module@2.16.1(transitive)
- Removedjackspeak@3.4.3(transitive)
- Removedlilconfig@3.1.3(transitive)
- Removedlru-cache@10.4.3(transitive)
- Removedmedia-typer@0.3.0(transitive)
- Removedminimatch@9.0.5(transitive)
- Removedminipass@7.1.2(transitive)
- Removedmz@2.7.0(transitive)
- Removedobject-hash@3.0.0(transitive)
- Removedpackage-json-from-dist@1.0.1(transitive)
- Removedpath-parse@1.0.7(transitive)
- Removedpath-scurry@1.11.1(transitive)
- Removedpostcss-import@15.1.0(transitive)
- Removedpostcss-js@4.0.1(transitive)
- Removedpostcss-load-config@4.0.2(transitive)
- Removedpostcss-nested@6.2.0(transitive)
- Removedpostcss-selector-parser@6.1.2(transitive)
- Removedread-cache@1.0.0(transitive)
- Removedside-channel@1.1.0(transitive)
- Removedsucrase@3.35.0(transitive)
- Removedsupports-preserve-symlinks-flag@1.0.0(transitive)
- Removedtailwindcss@3.4.17(transitive)
- Removedto-regex-range@5.0.1(transitive)
- Removedts-interface-checker@0.1.13(transitive)
- Removedvite@6.0.7(transitive)
- Removedyaml@2.7.0(transitive)
Updated@angular-devkit/core@19.1.5
Updated@angular/build@19.1.5
Updated@ngtools/webpack@19.1.5