Socket
Socket
Sign inDemoInstall

@angular-devkit/schematics

Package Overview
Dependencies
Maintainers
2
Versions
779
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/schematics - npm Package Compare versions

Comparing version 19.0.0-next.9 to 19.0.0-next.10

4

package.json
{
"name": "@angular-devkit/schematics",
"version": "19.0.0-next.9",
"version": "19.0.0-next.10",
"description": "Angular Schematics - Library",

@@ -21,3 +21,3 @@ "main": "src/index.js",

"dependencies": {
"@angular-devkit/core": "19.0.0-next.9",
"@angular-devkit/core": "19.0.0-next.10",
"jsonc-parser": "3.3.1",

@@ -24,0 +24,0 @@ "magic-string": "0.30.11",

@@ -49,5 +49,12 @@ "use strict";

let intermediateTree;
for await (const rule of rules) {
intermediateTree = (0, call_1.callRule)(rule, intermediateTree ?? initialTree, context);
if (Symbol.asyncIterator in rules) {
for await (const rule of rules) {
intermediateTree = (0, call_1.callRule)(rule, intermediateTree ?? initialTree, context);
}
}
else {
for (const rule of rules) {
intermediateTree = (0, call_1.callRule)(rule, intermediateTree ?? initialTree, context);
}
}
return () => intermediateTree;

@@ -54,0 +61,0 @@ };

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