You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@angular-devkit/core

Package Overview
Dependencies
Maintainers
2
Versions
945
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/core - npm Package Compare versions

Comparing version
8.2.0
to
8.2.1
+1
-1
package.json
{
"name": "@angular-devkit/core",
"version": "8.2.0",
"version": "8.2.1",
"description": "Angular DevKit - Core Utility Library",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -61,11 +61,8 @@ "use strict";

}
for (const propName of Object.getOwnPropertyNames(schema.properties)) {
if (propName in newValue) {
for (const [propName, schemaObject] of Object.entries(schema.properties)) {
if (newValue[propName] !== undefined || propName === '$schema') {
continue;
}
else if (propName == '$schema') {
continue;
}
// TODO: Does not currently handle more complex schemas (oneOf/anyOf/etc.)
const defaultValue = schema.properties[propName].default;
const defaultValue = schemaObject.default;
newValue[propName] = defaultValue;

@@ -72,0 +69,0 @@ }