New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@angular-devkit/build-angular

Package Overview
Dependencies
Maintainers
2
Versions
756
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/build-angular - npm Package Compare versions

Comparing version 19.1.4 to 19.1.5

16

package.json
{
"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 &&

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc