@spences10/pi-git-ui 0.0.7 → 0.0.8

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 +16 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # @spences10/pi-git-ui
2
2
 
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
+
3
8
  Focused Git staging, diff review, and commit modal for Pi.
4
9
 
5
10
  ## Usage
@@ -43,3 +48,14 @@ Controls:
43
48
  changes
44
49
  - `r` — refresh
45
50
  - `esc`/`q` — close
51
+
52
+ ## Development
53
+
54
+ Package scripts build transitive workspace dependencies first, then
55
+ run local tools through Vite+ with `vp exec`.
56
+
57
+ ```bash
58
+ pnpm --filter @spences10/pi-git-ui run check
59
+ pnpm --filter @spences10/pi-git-ui run test
60
+ pnpm --filter @spences10/pi-git-ui run build
61
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spences10/pi-git-ui",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Focused Git staging and commit modal for Pi",
5
5
  "keywords": [
6
6
  "git",
@@ -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.17"
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
  }