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.11
to
0.9.12
sinclair-typebox-codegen-0.9.11.tgz

Sorry, the diff of this file is not supported yet

+1
-1
{
"name": "@sinclair/typebox-codegen",
"version": "0.9.11",
"version": "0.9.12",
"description": "Code Generation Tools for TypeBox",

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

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

}
function* NamedTupleMember(node) {
yield* Collect(node.type);
}
function* ModuleDeclaration(node) {

@@ -569,2 +572,4 @@ const export_specifier = IsExport(node) ? 'export ' : '';

return yield* LiteralTypeNode(node);
if (ts.isNamedTupleMember(node))
return yield* NamedTupleMember(node);
if (ts.isPropertySignature(node))

@@ -571,0 +576,0 @@ return yield* PropertySignature(node);