@spences10/pi-git-ui 0.0.7 → 0.0.9

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.
Files changed (2) hide show
  1. package/README.md +19 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # @spences10/pi-git-ui
2
2
 
3
- Focused Git staging, diff review, and commit modal for Pi.
3
+ [![built with Vite+](https://img.shields.io/badge/built%20with-Vite+-646CFF?logo=vite&logoColor=white)](https://viteplus.dev)
4
+ [![tested with Vitest](https://img.shields.io/badge/tested%20with-Vitest-6E9F18?logo=vitest&logoColor=white)](https://vitest.dev)
5
+ [![npm version](https://img.shields.io/npm/v/@spences10/pi-git-ui?color=CB3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/@spences10/pi-git-ui)
6
+ [![license](https://img.shields.io/npm/l/@spences10/pi-git-ui)](https://www.npmjs.com/package/@spences10/pi-git-ui)
7
+
8
+ Review and commit changes from inside Pi without context-switching to
9
+ a separate Git client. `pi-git-ui` provides a focused staging, diff
10
+ review, and commit modal designed for agent-assisted coding workflows.
4
11
 
5
12
  ## Usage
6
13
 
@@ -43,3 +50,14 @@ Controls:
43
50
  changes
44
51
  - `r` — refresh
45
52
  - `esc`/`q` — close
53
+
54
+ ## Development
55
+
56
+ Package scripts build transitive workspace dependencies first, then
57
+ run local tools through Vite+ with `vp exec`.
58
+
59
+ ```bash
60
+ pnpm --filter @spences10/pi-git-ui run check
61
+ pnpm --filter @spences10/pi-git-ui run test
62
+ pnpm --filter @spences10/pi-git-ui run build
63
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spences10/pi-git-ui",
3
- "version": "0.0.7",
4
- "description": "Focused Git staging and commit modal for Pi",
3
+ "version": "0.0.9",
4
+ "description": "Focused in-Pi Git staging, diff review, and commit modal for agent-assisted coding workflows",
5
5
  "keywords": [
6
6
  "git",
7
7
  "pi",
@@ -30,7 +30,7 @@
30
30
  }
31
31
  },
32
32
  "dependencies": {
33
- "@spences10/pi-tui-modal": "0.0.16"
33
+ "@spences10/pi-tui-modal": "0.0.18"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@earendil-works/pi-coding-agent": "^0.74.1",
@@ -53,12 +53,12 @@
53
53
  },
54
54
  "scripts": {
55
55
  "build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
56
- "build:self": "tsc -p tsconfig.build.json",
56
+ "build:self": "vp exec tsc -p tsconfig.build.json",
57
57
  "check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
58
- "check:self": "tsc --noEmit",
58
+ "check:self": "vp exec tsc --noEmit",
59
59
  "test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
60
- "test:self": "vitest run",
61
- "coverage:self": "vitest run --coverage",
60
+ "test:self": "vp exec vitest run",
61
+ "coverage:self": "vp exec vitest run --coverage",
62
62
  "coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
63
63
  }
64
64
  }