@pome-sh/checks 0.2.0 → 0.2.1

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/CHANGELOG.md +18 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @pome-sh/checks
2
2
 
3
+ ## 0.2.1 — 2026-08-13
4
+
5
+ No change to the vocabulary: every check id, template, polarity and seed schema
6
+ is identical, so `checksDigest` does not move and no pin has to catch up.
7
+
8
+ Build tooling only. The declaration bundler that makes this package's shipped
9
+ `.d.ts` self-contained moved from `packages/checks/scripts/` to
10
+ `scripts/bundle-declarations.mjs`, so the new `@pome-sh/sandbox-domains` (F-1526)
11
+ can share it rather than carry a second copy of a ~300-line algorithm that was
12
+ already package-agnostic. It takes the package root as an argument now, plus an
13
+ optional `--external`; this package passes no externals, which is exactly its
14
+ previous behaviour, so its output is unchanged and `zod` and `node:*` remain the
15
+ only bare specifiers its declarations may name.
16
+
17
+ It stays publish-relevant for this package — a regression in it ships broken
18
+ declarations to pome-cloud, and that is true no matter which directory it lives
19
+ in.
20
+
3
21
  ## 0.2.0 — 2026-08-13
4
22
 
5
23
  Carries the vocabulary's first POSITIVE tape assertion on github to the grader
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pome-sh/checks",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
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",
@@ -66,7 +66,7 @@
66
66
  "checks"
67
67
  ],
68
68
  "scripts": {
69
- "build": "tsup && node scripts/bundle-declarations.mjs",
69
+ "build": "tsup && node ../../scripts/bundle-declarations.mjs .",
70
70
  "test": "vitest run",
71
71
  "typecheck": "tsc -p tsconfig.json --noEmit",
72
72
  "prepublishOnly": "npm run build"