@pome-sh/checks 0.3.1 → 0.3.3
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 +19 -0
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @pome-sh/checks
|
|
2
2
|
|
|
3
|
+
## 0.3.3 — 2026-08-22
|
|
4
|
+
|
|
5
|
+
**No consumer-visible change.** The repo's top-level `examples/` directory is now
|
|
6
|
+
`agent-examples/`, so comments and one MCP tools-list provenance note that named
|
|
7
|
+
the old path were updated with it. No tool, schema, status code, response body or
|
|
8
|
+
shipped artifact moved; `packages/twin-github`'s fixture still serves the same 36
|
|
9
|
+
tools. Listed only because those files sit under a path the next release of this
|
|
10
|
+
package carries.
|
|
11
|
+
|
|
12
|
+
## 0.3.2 — 2026-08-22
|
|
13
|
+
|
|
14
|
+
**No consumer-visible change.** The nine per-workspace `vitest.config.ts` files
|
|
15
|
+
were replaced by one root config declaring every workspace as a vitest project,
|
|
16
|
+
and the per-workspace `"test": "vitest run"` scripts were removed in favour of a
|
|
17
|
+
single root `test`. Test selection is byte-identical -- 3,748 cases before and
|
|
18
|
+
after, same names. Nothing about this package's source, exports, or shipped
|
|
19
|
+
artifact moved. Listed only because a manifest changed, which the next release
|
|
20
|
+
of this package carries.
|
|
21
|
+
|
|
3
22
|
## 0.3.1 — 2026-08-18
|
|
4
23
|
|
|
5
24
|
**`slackSeedSchema` accepts a `files` key** (F-1509). This package re-exports
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pome-sh/checks",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Pome's grading vocabulary — the check declarations, seed schemas and default seeds of all five digital twins, plus the check DSL they are written in. Declarations only: no twin server, no database, no routes, no tools.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
],
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "tsup && node ../../scripts/bundle-declarations.mjs .",
|
|
70
|
-
"test": "vitest run",
|
|
71
70
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
72
71
|
"prepublishOnly": "npm run build"
|
|
73
72
|
},
|