From 27da09614efa15375cd2d32ce2e8cfdbc12e60a2 Mon Sep 17 00:00:00 2001 From: Mark IJbema Date: Thu, 7 May 2026 12:26:10 +0200 Subject: [PATCH] fix: restore root package.json entries dropped by upstream-compat The automated kilo compat transform keeps upstream's root scripts/catalog wholesale and only re-applies a handful of Kilo-specific scripts, which silently dropped: - postinstall's `&& bun run script/setup-git.ts` tail (needed to set merge.conflictStyle=zdiff3 locally, which upstream merges rely on) - the `dev-setup` script shorthand - kept dead `dev:desktop` / `dev:web` / `dev:console` scripts whose target packages aren't tracked in Kilo - kept `@sentry/solid` / `@sentry/vite-plugin` catalog entries that have zero consumers in our tree --- package.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index d5cbbaf437..e4f650194d 100644 --- a/package.json +++ b/package.json @@ -7,13 +7,11 @@ "packageManager": "bun@1.3.13", "scripts": { "dev": "bun run --cwd packages/opencode --conditions=browser src/index.ts", - "dev:desktop": "bun --cwd packages/desktop-electron dev", - "dev:web": "bun --cwd packages/app dev", - "dev:console": "ulimit -n 10240 2>/dev/null; bun run --cwd packages/console/app dev", + "dev-setup": "bun run --cwd packages/opencode --conditions=browser src/index.ts dev-setup", "dev:storybook": "bun --cwd packages/storybook storybook", "lint": "oxlint", "typecheck": "bun turbo typecheck", - "postinstall": "bun run --cwd packages/opencode fix-node-pty", + "postinstall": "bun run --cwd packages/opencode fix-node-pty && bun run script/setup-git.ts", "prepare": "husky", "random": "echo 'Random script'", "hello": "echo 'Hello World!'", @@ -76,8 +74,6 @@ "@solidjs/meta": "0.29.4", "@solidjs/router": "0.15.4", "@solidjs/start": "https://pkg.pr.new/@solidjs/start@dfb2020", - "@sentry/solid": "10.36.0", - "@sentry/vite-plugin": "4.6.0", "solid-js": "1.9.12", "vite-plugin-solid": "2.11.10", "@lydell/node-pty": "1.2.0-beta.10"