@spences10/pi-sqlite-tools 0.0.8 → 0.0.10
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/CHANGELOG.md +14 -0
- package/README.md +5 -3
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
+
## 0.0.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a040ea3: Standardize package scripts through Vite+ and refresh
|
|
8
|
+
README badges/development guidance across published packages.
|
|
9
|
+
|
|
10
|
+
## 0.0.9
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- ffea37e: Standardize shared dependency versions through pnpm catalog
|
|
15
|
+
and align package dev dependencies for CI.
|
|
16
|
+
|
|
3
17
|
## 0.0.8
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
4
3
|
[](https://viteplus.dev)
|
|
5
4
|
[](https://vitest.dev)
|
|
5
|
+
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
6
|
+
[](https://www.npmjs.com/package/@spences10/pi-sqlite-tools)
|
|
6
7
|
|
|
7
8
|
Pi extension that reminds the model to prefer `mcp-sqlite-tools` for
|
|
8
9
|
SQLite database work instead of raw `sqlite3` shell commands. It does
|
|
9
10
|
not start or duplicate the MCP server; it only injects workflow
|
|
10
11
|
guidance when SQLite MCP tools are available.
|
|
11
12
|
|
|
12
|
-
Maintained in the `my-pi` Vite+ workspace and tested with Vitest.
|
|
13
|
-
|
|
14
13
|
## Installation
|
|
15
14
|
|
|
16
15
|
```bash
|
|
@@ -75,6 +74,9 @@ SQLite tools reminder.
|
|
|
75
74
|
|
|
76
75
|
## Development
|
|
77
76
|
|
|
77
|
+
Package scripts build transitive workspace dependencies first, then
|
|
78
|
+
run local tools through Vite+ with `vp exec`.
|
|
79
|
+
|
|
78
80
|
```bash
|
|
79
81
|
pnpm --filter @spences10/pi-sqlite-tools run check
|
|
80
82
|
pnpm --filter @spences10/pi-sqlite-tools run test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-sqlite-tools",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -30,9 +30,10 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
+
"@earendil-works/pi-coding-agent": "^0.74.1",
|
|
33
34
|
"@types/node": "^25.8.0",
|
|
34
35
|
"typescript": "^6.0.3",
|
|
35
|
-
"vitest": "
|
|
36
|
+
"vitest": "4.1.5"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
39
|
"@earendil-works/pi-coding-agent": "*"
|
|
@@ -48,10 +49,12 @@
|
|
|
48
49
|
},
|
|
49
50
|
"scripts": {
|
|
50
51
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
51
|
-
"build:self": "tsc -p tsconfig.build.json",
|
|
52
|
+
"build:self": "vp exec tsc -p tsconfig.build.json",
|
|
52
53
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
53
|
-
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
54
|
+
"check:self": "vp exec tsc --noEmit -p tsconfig.json",
|
|
54
55
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
55
|
-
"test:self": "vitest run"
|
|
56
|
+
"test:self": "vp exec vitest run",
|
|
57
|
+
"coverage:self": "vp exec vitest run --coverage",
|
|
58
|
+
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
56
59
|
}
|
|
57
60
|
}
|