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

@angular/cli

Package Overview
Dependencies
Maintainers
2
Versions
847
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/cli - npm Package Compare versions

Comparing version 18.0.6 to 18.0.7

26

package.json
{
"name": "@angular/cli",
"version": "18.0.6",
"version": "18.0.7",
"description": "CLI tool for Angular",

@@ -28,6 +28,6 @@ "main": "lib/cli/index.js",

"dependencies": {
"@angular-devkit/architect": "0.1800.6",
"@angular-devkit/core": "18.0.6",
"@angular-devkit/schematics": "18.0.6",
"@schematics/angular": "18.0.6",
"@angular-devkit/architect": "0.1800.7",
"@angular-devkit/core": "18.0.7",
"@angular-devkit/schematics": "18.0.7",
"@schematics/angular": "18.0.7",
"@yarnpkg/lockfile": "1.1.0",

@@ -50,10 +50,10 @@ "ansi-colors": "4.1.3",

"packageGroup": {
"@angular/cli": "18.0.6",
"@angular/build": "18.0.6",
"@angular/ssr": "18.0.6",
"@angular-devkit/architect": "0.1800.6",
"@angular-devkit/build-angular": "18.0.6",
"@angular-devkit/build-webpack": "0.1800.6",
"@angular-devkit/core": "18.0.6",
"@angular-devkit/schematics": "18.0.6"
"@angular/cli": "18.0.7",
"@angular/build": "18.0.7",
"@angular/ssr": "18.0.7",
"@angular-devkit/architect": "0.1800.7",
"@angular-devkit/build-angular": "18.0.7",
"@angular-devkit/build-webpack": "0.1800.7",
"@angular-devkit/core": "18.0.7",
"@angular-devkit/schematics": "18.0.7"
}

@@ -60,0 +60,0 @@ },

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

function _performUpdate(tree, context, infoMap, logger, migrateOnly) {
const packageJsonContent = tree.read('/package.json');
const packageJsonContent = tree.read('/package.json')?.toString();
if (!packageJsonContent) {

@@ -236,6 +236,8 @@ throw new schematics_1.SchematicsException('Could not find a package.json. Are you in a Node project?');

});
const newContent = JSON.stringify(packageJson, null, 2);
if (packageJsonContent.toString() != newContent || migrateOnly) {
const eofMatches = packageJsonContent.match(/\r?\n$/);
const eof = eofMatches?.[0] ?? '';
const newContent = JSON.stringify(packageJson, null, 2) + eof;
if (packageJsonContent != newContent || migrateOnly) {
if (!migrateOnly) {
tree.overwrite('/package.json', JSON.stringify(packageJson, null, 2));
tree.overwrite('/package.json', newContent);
}

@@ -242,0 +244,0 @@ const externalMigrations = [];

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

// TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
// export const VERSION = new Version('18.0.6');
// export const VERSION = new Version('18.0.7');
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
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