pullfrog 0.0.201 → 0.0.202

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.
@@ -6,7 +6,9 @@ export type TodoTracker = {
6
6
  settled: () => Promise<void>;
7
7
  /** mark in-progress items as completed (for final snapshot before review/progress post) */
8
8
  completeInProgress: () => void;
9
- renderCollapsible: () => string;
9
+ renderCollapsible: (options?: {
10
+ completeInProgress?: boolean;
11
+ }) => string;
10
12
  readonly enabled: boolean;
11
13
  /** true after the tracker has successfully called onUpdate at least once */
12
14
  readonly hasPublished: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pullfrog",
3
- "version": "0.0.201",
3
+ "version": "0.0.202",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pullfrog": "dist/cli.mjs",
@@ -12,6 +12,7 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "test": "vitest",
15
+ "test:catalog": "vitest run --config vitest.main.config.ts",
15
16
  "typecheck": "tsc --noEmit",
16
17
  "build": "node esbuild.config.js && tsc -p tsconfig.exports.json",
17
18
  "check:entrypoints": "node scripts/check-entrypoint-imports.ts",
@@ -24,7 +25,7 @@
24
25
  },
25
26
  "devDependencies": {
26
27
  "@actions/core": "^1.11.1",
27
- "@anthropic-ai/claude-code": "2.1.85",
28
+ "@anthropic-ai/claude-code": "2.1.112",
28
29
  "@ark/fs": "0.56.0",
29
30
  "@ark/util": "0.56.0",
30
31
  "@clack/prompts": "^1.2.0",