New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@sinclair/typebox-codegen

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sinclair/typebox-codegen - npm Package Compare versions

Comparing version
0.9.14
to
0.9.15
+1
-1
package.json
{
"name": "@sinclair/typebox-codegen",
"version": "0.9.14",
"version": "0.9.15",
"description": "Code Generation Tools for TypeBox",

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

@@ -424,2 +424,5 @@ "use strict";

}
function* PropertyAccessExpression(node) {
yield node.getText();
}
function* RestTypeNode(node) {

@@ -594,2 +597,4 @@ yield `...Type.Rest(${node.type.getText()})`;

return yield* ParenthesizedTypeNode(node);
if (ts.isPropertyAccessExpression(node))
return yield* PropertyAccessExpression(node);
if (ts.isRestTypeNode(node))

@@ -596,0 +601,0 @@ return yield* RestTypeNode(node);