New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@raycast/generate-docs

Package Overview
Dependencies
Maintainers
8
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@raycast/generate-docs - npm Package Compare versions

Comparing version 0.8.1 to 0.8.2

2

package.json
{
"name": "@raycast/generate-docs",
"version": "0.8.1",
"version": "0.8.2",
"description": "",

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

@@ -40,8 +40,13 @@ const { is } = require("./utils");

.filter((y) => !is.ReactComponentType(y))
.map(({ id }) => idsMap.get(id))
.forEach((y) => {
value.push(y);
if (!y) {
if (y.type === "reference") {
y = idsMap.get(y.id);
} else if (y.type === "reflection") {
y = y.declaration;
} else {
console.log(y, x);
}
value.push(y);
if (y.children) {

@@ -48,0 +53,0 @@ y.children.forEach((z) => iterate(z, `${key}.`));

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