@kitschpatrol/tldraw-cli 4.6.15 → 4.6.16
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/bin/cli.js +1 -1
- package/dist/.DS_Store +0 -0
- package/package.json +3 -2
package/bin/cli.js
CHANGED
|
@@ -1309,7 +1309,7 @@ import yargs from "yargs";
|
|
|
1309
1309
|
import { hideBin } from "yargs/helpers";
|
|
1310
1310
|
|
|
1311
1311
|
// package.json
|
|
1312
|
-
var version = "4.6.
|
|
1312
|
+
var version = "4.6.16";
|
|
1313
1313
|
|
|
1314
1314
|
// node_modules/.pnpm/nanoid@5.0.7/node_modules/nanoid/index.js
|
|
1315
1315
|
import { webcrypto as crypto } from "node:crypto";
|
package/dist/.DS_Store
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/tldraw-cli",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A CLI tool for exporting tldraw sketch URLs and local .tldr files to SVG or PNG images.",
|
|
6
6
|
"repository": "github:kitschpatrol/tldraw-cli",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@sindresorhus/slugify": "^2.2.1",
|
|
50
50
|
"@tldraw/assets": "3.0.1",
|
|
51
51
|
"@types/express": "^4.17.21",
|
|
52
|
+
"@types/node": "18.0.0",
|
|
52
53
|
"@types/react": "^18.3.5",
|
|
53
54
|
"@types/react-dom": "^18.3.0",
|
|
54
55
|
"@types/yargs": "^17.0.33",
|
|
@@ -93,7 +94,7 @@
|
|
|
93
94
|
"lint": "shared-config --lint",
|
|
94
95
|
"preview": "pnpm run preview:tldraw",
|
|
95
96
|
"preview:tldraw": "vite preview",
|
|
96
|
-
"release": "
|
|
97
|
+
"release": "bumpp --commit 'Release: %s' && pnpm run build && pnpm publish --otp $(op read 'op://Personal/Npmjs/one-time password?attribute=otp')",
|
|
97
98
|
"test": "vitest --run",
|
|
98
99
|
"test:watch": "pnpm run build && vitest",
|
|
99
100
|
"tldraw:copy-assets": "rsync -av --include='/*/' --exclude='/*' --exclude='favicon.ico' ./node_modules/@tldraw/assets/ ./src/tldraw/public/"
|