prisma-ts-select 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prisma-ts-select",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "prisma-ts-select": "dist/bin.cjs"
@@ -76,7 +76,7 @@
76
76
  "knip": "^5.9.4",
77
77
  "log-with-statusbar": "^1.2.0",
78
78
  "markdown-toc": "^1.2.0",
79
- "mdcode-ts": "0.0.3-9",
79
+ "mdcode-ts": "^0.0.4",
80
80
  "prisma": "6.19.2",
81
81
  "prisma-dbml-generator": "^0.10.0",
82
82
  "prisma-docs-generator": "^0.8.0",
@@ -171,11 +171,9 @@
171
171
  "test:jest": "jest",
172
172
  "2postinstall": "node src/scripts/postinstall.js",
173
173
  "doc": "pnpm exec markdown-toc -i README.md",
174
- "mdcode": "go run github.com/szkiba/mdcode@latest ",
175
- "mdcode-ts": "pnpm exec mdcode-ts",
176
- "readme:extract": "pnpm mdcode-ts extract README.md",
177
- "readme:update:old": "pnpm mdcode update README.md",
178
- "readme:update": "pnpm mdcode-ts update README.md",
174
+ "mdcode-ts": "pnpm exec mdcode",
175
+ "readme:extract": "pnpm mdcode extract README.md",
176
+ "readme:update": "pnpm mdcode update --transform ./transforms/readme-sql-clean.ts README.md",
179
177
  "readme:test": "pnpm --filter usage-sqlite-v7 test -- tests/readme"
180
178
  }
181
179
  }
@@ -1,5 +0,0 @@
1
- import { JsonValue } from '@prisma/client/runtime/client';
2
-
3
- type JSONValue = JsonValue;
4
-
5
- export type { JSONValue as J };
File without changes