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

prisma-markdown

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prisma-markdown - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

2

lib/writers/DescriptionWriter.js

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

const part = content.slice(first + 7, last).trim();
const space = part.indexOf(" ", first + 7);
const space = part.indexOf(" ");
rejoined.push(content.slice(i, first));

@@ -64,0 +64,0 @@ if (space === -1)

{
"name": "prisma-markdown",
"version": "0.2.3",
"version": "0.2.4",
"description": "Prisma Markdown documents generator including ERD diagrams and comment descriptions",

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

@@ -63,4 +63,5 @@ import { DMMF } from "@prisma/client/runtime/library";

const part: string = content.slice(first + 7, last).trim();
const space: number = part.indexOf(" ", first + 7);
const space: number = part.indexOf(" ");
rejoined.push(content.slice(i, first));
if (space === -1)

@@ -67,0 +68,0 @@ rejoined.push(`[${part}](#${part.split(".")[0]})`);

Sorry, the diff of this file is not supported yet

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