From 887affa4a39014ac38a611dcc1dcc921977213c7 Mon Sep 17 00:00:00 2001 From: Dan Kotowski Date: Tue, 14 Jul 2026 00:53:48 -0500 Subject: [PATCH] Ignore Claude local files and enforce pnpm (#226) * Ignore Claude local files * Prohibit use of non-pnpm package managers * Ensure EOF newline --- .claude/.gitignore | 3 +++ package.json | 1 + 2 files changed, 4 insertions(+) create mode 100644 .claude/.gitignore diff --git a/.claude/.gitignore b/.claude/.gitignore new file mode 100644 index 0000000..f9cb41a --- /dev/null +++ b/.claude/.gitignore @@ -0,0 +1,3 @@ +worktrees/ +*.local.* + diff --git a/package.json b/package.json index 8b75b85..8c6ea32 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "scripts": { "dev": "vite", "build": "vite build", + "preinstall": "npx only-allow pnpm", "preview": "vite preview", "check": "svelte-check --tsconfig ./tsconfig.json", "prepare": "husky"