From 0941d85d535b4ed9121dc5dfafe93ad7c8040136 Mon Sep 17 00:00:00 2001 From: Casey Collier Date: Sun, 20 Jul 2025 16:16:49 -0400 Subject: [PATCH] Add version sync script and update to 0.1.3 - Created automated version sync script in scripts/sync-version.js - Updates all website version references automatically - Added sync-version npm script for easy usage - All files now synced to version 0.1.3 --- package.json | 1 + website/package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6a702d5..d074a65 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "build:cjs": "esbuild src/index.ts --bundle --outfile=dist/index.cjs --target=node16 --format=cjs --platform=node", "build:types": "tsc --emitDeclarationOnly --outDir dist", "typecheck": "tsc --noEmit", + "sync-version": "node scripts/sync-version.js", "prepublishOnly": "bun run build && bun run typecheck" }, "keywords": [ diff --git a/website/package.json b/website/package.json index 0167992..1412bf3 100644 --- a/website/package.json +++ b/website/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "@catalystlabs/typedfetch": "^0.1.2", + "@catalystlabs/typedfetch": "^0.1.3", "@mantine/code-highlight": "^8.0.0", "@mantine/core": "^8.0.0", "@mantine/hooks": "^8.0.0",