whipped 0.8.0 → 0.8.1

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/dist/cli.js CHANGED
@@ -28770,7 +28770,7 @@ process.on("uncaughtException", (err) => {
28770
28770
  if (err.code === "EPIPE" || err.code === "ECONNRESET") return;
28771
28771
  throw err;
28772
28772
  });
28773
- var VERSION9 = true ? "0.8.0" : "0.0.0-dev";
28773
+ var VERSION9 = true ? "0.8.1" : "0.0.0-dev";
28774
28774
  async function isPortAvailable(port, host) {
28775
28775
  return new Promise((resolve5) => {
28776
28776
  const probe = createServer2();
@@ -76897,8 +76897,8 @@ function KanbanBoard({
76897
76897
  const { trigger: stopAll } = useWrite((api) => api("cards/stop-all").POST());
76898
76898
  const { trigger: resumeAll } = useWrite((api) => api("cards/resume-all").POST());
76899
76899
  const currentBranch = (branchesData == null ? void 0 : branchesData.defaultBranch) ?? "";
76900
- const openCard = (id) => navigate(`/${encodeURIComponent(workspaceId)}/board/${encodeURIComponent(id)}`, { replace: true });
76901
- const closeCard = () => navigate(`/${encodeURIComponent(workspaceId)}/board`, { replace: true });
76900
+ const openCard = (id) => navigate(`/${encodeURIComponent(workspaceId)}/board/${encodeURIComponent(id)}`);
76901
+ const closeCard = () => navigate(`/${encodeURIComponent(workspaceId)}/board`);
76902
76902
  const handleCardDelete = (card) => {
76903
76903
  var _a4;
76904
76904
  ConfirmDialog_default.show({
@@ -77282,7 +77282,7 @@ function BoardPage({ onOpenAgent }) {
77282
77282
  if (projects.length === 0) return;
77283
77283
  if (projects.some((p) => p.workspaceId === workspaceId)) return;
77284
77284
  const id = (layout ? firstSortedProjectId(layout, projects) : null) ?? projects[0].workspaceId;
77285
- navigate(`/${encodeURIComponent(id)}/board`, { replace: true });
77285
+ navigate(`/${encodeURIComponent(id)}/board`);
77286
77286
  }, [projectList, layout, workspaceId, navigate]);
77287
77287
  const switchProject = (wsId) => {
77288
77288
  navigate(`/${encodeURIComponent(wsId)}/board`);
@@ -77293,7 +77293,7 @@ function BoardPage({ onOpenAgent }) {
77293
77293
  if (wsId !== workspaceId) return;
77294
77294
  const remaining = projects.filter((p) => p.workspaceId !== wsId);
77295
77295
  const nextId = (layout ? firstSortedProjectId(layout, remaining) : null) ?? ((_a3 = remaining[0]) == null ? void 0 : _a3.workspaceId);
77296
- navigate(nextId ? `/${encodeURIComponent(nextId)}/board` : "/", { replace: true });
77296
+ navigate(nextId ? `/${encodeURIComponent(nextId)}/board` : "/");
77297
77297
  };
77298
77298
  return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex h-full overflow-hidden", children: [
77299
77299
  /* @__PURE__ */ jsxRuntimeExports.jsxs("nav", { className: "w-[220px] shrink-0 flex flex-col bg-[#141418] border-r border-[#2a2a35]", children: [
@@ -78082,7 +78082,7 @@ function RecurringAgentsPage() {
78082
78082
  }, [list2.trigger]);
78083
78083
  reactExports.useEffect(() => {
78084
78084
  if (agentId || agents.length === 0) return;
78085
- navigate(`/${encodeURIComponent(wsId)}/recurring-agents/${encodeURIComponent(agents[0].id)}`, { replace: true });
78085
+ navigate(`/${encodeURIComponent(wsId)}/recurring-agents/${encodeURIComponent(agents[0].id)}`);
78086
78086
  }, [agentId, agents, wsId, navigate]);
78087
78087
  const select = (id) => navigate(`/${encodeURIComponent(wsId)}/recurring-agents/${encodeURIComponent(id)}`);
78088
78088
  const handleToggle = async (enabled) => {
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <link rel="icon" type="image/png" href="/favicon.png" />
7
7
  <title>whipped</title>
8
- <script type="module" crossorigin src="/assets/index-CuGz83Sg.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-BMFVAmy4.js"></script>
9
9
  <link rel="stylesheet" crossorigin href="/assets/index-CRXPsGTP.css">
10
10
  </head>
11
11
  <body>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whipped",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Autonomous AI agent kanban board for Claude, Codex, Opencode, and Cursor.",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/nxnom/whipped#readme",
@@ -22,21 +22,6 @@
22
22
  "engines": {
23
23
  "node": ">=22"
24
24
  },
25
- "packageManager": "pnpm@11.8.0",
26
- "scripts": {
27
- "clean": "rm -rf dist",
28
- "build": "pnpm clean && pnpm web:build && node scripts/build.mjs",
29
- "prepublishOnly": "pnpm build",
30
- "postinstall": "node scripts/postinstall.mjs",
31
- "dev": "NODE_ENV=development tsx src/cli.ts",
32
- "dev:full": "node scripts/dev-full.mjs",
33
- "web:dev": "pnpm --filter @whipped/web dev",
34
- "web:build": "pnpm --filter @whipped/web build",
35
- "typecheck": "tsc -p tsconfig.json --noEmit",
36
- "web:typecheck": "pnpm --filter @whipped/web typecheck",
37
- "lint": "biome lint src web-ui/src",
38
- "format": "biome format --write ."
39
- },
40
25
  "dependencies": {
41
26
  "@hono/zod-validator": "^0.8.0",
42
27
  "@modelcontextprotocol/sdk": "^1.29.0",
@@ -68,5 +53,18 @@
68
53
  "esbuild": "^0.27.4",
69
54
  "tsx": "^4.20.3",
70
55
  "typescript": "^5.9.3"
56
+ },
57
+ "scripts": {
58
+ "clean": "rm -rf dist",
59
+ "build": "pnpm clean && pnpm web:build && node scripts/build.mjs",
60
+ "postinstall": "node scripts/postinstall.mjs",
61
+ "dev": "NODE_ENV=development tsx src/cli.ts",
62
+ "dev:full": "node scripts/dev-full.mjs",
63
+ "web:dev": "pnpm --filter @whipped/web dev",
64
+ "web:build": "pnpm --filter @whipped/web build",
65
+ "typecheck": "tsc -p tsconfig.json --noEmit",
66
+ "web:typecheck": "pnpm --filter @whipped/web typecheck",
67
+ "lint": "biome lint src web-ui/src",
68
+ "format": "biome format --write ."
71
69
  }
72
70
  }