Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@angular-devkit/schematics

Package Overview
Dependencies
59
Maintainers
2
Versions
740
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 17.3.7 to 17.3.8

4

package.json
{
"name": "@angular-devkit/schematics",
"version": "17.3.7",
"version": "17.3.8",
"description": "Angular Schematics - Library",

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

"dependencies": {
"@angular-devkit/core": "17.3.7",
"@angular-devkit/core": "17.3.8",
"jsonc-parser": "3.2.1",

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

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

catch (e) {
if (e instanceof TypeError) {
// The second part should not be needed. But Jest does not support instanceof correctly.
// See: https://github.com/jestjs/jest/issues/2549
if (e instanceof TypeError ||
e.code === 'ERR_ENCODING_INVALID_ENCODED_DATA') {
return entry;

@@ -48,0 +51,0 @@ }

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

catch (e) {
if (e instanceof TypeError) {
// The second part should not be needed. But Jest does not support instanceof correctly.
// See: https://github.com/jestjs/jest/issues/2549
if (e instanceof TypeError ||
e.code === 'ERR_ENCODING_INVALID_ENCODED_DATA') {
throw new Error(`Failed to decode "${path}" as UTF-8 text.`);

@@ -233,0 +236,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc