@pome-sh/checks 0.3.1 → 0.3.2
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 +10 -0
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @pome-sh/checks
|
|
2
2
|
|
|
3
|
+
## 0.3.2 — 2026-08-22
|
|
4
|
+
|
|
5
|
+
**No consumer-visible change.** The nine per-workspace `vitest.config.ts` files
|
|
6
|
+
were replaced by one root config declaring every workspace as a vitest project,
|
|
7
|
+
and the per-workspace `"test": "vitest run"` scripts were removed in favour of a
|
|
8
|
+
single root `test`. Test selection is byte-identical -- 3,748 cases before and
|
|
9
|
+
after, same names. Nothing about this package's source, exports, or shipped
|
|
10
|
+
artifact moved. Listed only because a manifest changed, which the next release
|
|
11
|
+
of this package carries.
|
|
12
|
+
|
|
3
13
|
## 0.3.1 — 2026-08-18
|
|
4
14
|
|
|
5
15
|
**`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.2",
|
|
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
|
},
|