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

@angular-devkit/architect

Package Overview
Dependencies
Maintainers
2
Versions
744
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-devkit/architect - npm Package Compare versions

Comparing version 0.1901.0-next.0 to 0.1901.0-next.1

19

node/node-modules-architect-host.js

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

// Determine builder option schema path (relative within package only)
const schemaPath = builder.schema && path.normalize(builder.schema);
let schemaPath = builder.schema && path.normalize(builder.schema);
if (!schemaPath) {

@@ -178,3 +178,18 @@ throw new Error('Could not find the schema for builder ' + builderStr);

}
const schemaText = (0, node_fs_1.readFileSync)(path.join(buildersManifestDirectory, schemaPath), 'utf-8');
// The file could be either a package reference or in the local manifest directory.
// Node resolution is tried first then reading the file from the manifest directory if resolution fails.
try {
schemaPath = localRequire.resolve(schemaPath, {
paths: [buildersManifestDirectory],
});
}
catch (e) {
if (e.code === 'MODULE_NOT_FOUND') {
schemaPath = path.join(buildersManifestDirectory, schemaPath);
}
else {
throw e;
}
}
const schemaText = (0, node_fs_1.readFileSync)(schemaPath, 'utf-8');
return Promise.resolve({

@@ -181,0 +196,0 @@ name: builderStr,

4

package.json
{
"name": "@angular-devkit/architect",
"version": "0.1901.0-next.0",
"version": "0.1901.0-next.1",
"description": "Angular Build Facade",

@@ -9,3 +9,3 @@ "experimental": true,

"dependencies": {
"@angular-devkit/core": "19.1.0-next.0",
"@angular-devkit/core": "19.1.0-next.1",
"rxjs": "7.8.1"

@@ -12,0 +12,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