Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@angular/build

Package Overview
Dependencies
Maintainers
2
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/build - npm Package Compare versions

Comparing version 18.2.7 to 18.2.8

4

package.json
{
"name": "@angular/build",
"version": "18.2.7",
"version": "18.2.8",
"description": "Official build system for Angular",

@@ -26,3 +26,3 @@ "keywords": [

"@ampproject/remapping": "2.3.0",
"@angular-devkit/architect": "0.1802.7",
"@angular-devkit/architect": "0.1802.8",
"@babel/core": "7.25.2",

@@ -29,0 +29,0 @@ "@babel/helper-annotate-as-pure": "7.24.7",

@@ -86,6 +86,3 @@ "use strict";

sourcemap,
chunkFileNames(chunkInfo) {
// Do not add hash to file name if already present
return /-[a-zA-Z0-9]{8}$/.test(chunkInfo.name) ? '[name].js' : '[name]-[hash].js';
},
chunkFileNames: (chunkInfo) => `${chunkInfo.name.replace(/-[a-zA-Z0-9]{8}$/, '')}-[hash].js`,
});

@@ -92,0 +89,0 @@ optimizedOutput = result.output;

@@ -77,2 +77,8 @@ "use strict";

process.setSourceMapsEnabled(true);
if (browserOptions.progress !== false) {
// This is a workaround for https://github.com/angular/angular-cli/issues/28336, which is caused by the interaction between `zone.js` and `listr2`.
process.once('SIGINT', () => {
process.kill(process.pid);
});
}
}

@@ -79,0 +85,0 @@ // Set all packages as external to support Vite's prebundle caching

@@ -13,3 +13,3 @@ "use strict";

/** Version placeholder is replaced during the build process with actual package version */
const VERSION = '18.2.7';
const VERSION = '18.2.8';
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