@curly-message/conformance 1.0.0-next.0 → 1.0.0-next.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/README.md +2 -1
- package/index.json +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -247,7 +247,8 @@ The reference implementation is what the set is checked against before it
|
|
|
247
247
|
lands, and the set is what the reference is checked against in turn. Where
|
|
248
248
|
the two disagree, the specification decides which is wrong.
|
|
249
249
|
|
|
250
|
-
`npm run manifest` regenerates `index.json` from the files
|
|
250
|
+
`npm run manifest` regenerates `index.json` from the files, and a version bump
|
|
251
|
+
runs it; the tests fail
|
|
251
252
|
where it is stale, where an `id` repeats, where a file does not validate
|
|
252
253
|
against the schema, or where a `section` names no heading of `SPEC.md`.
|
|
253
254
|
|
package/index.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@curly-message/conformance",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.2",
|
|
4
4
|
"description": "Conformance fixtures and runner for the Curly Message Format.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"./package.json": "./package.json"
|
|
16
16
|
},
|
|
17
17
|
"bin": {
|
|
18
|
-
"curly-message-conformance": "
|
|
18
|
+
"curly-message-conformance": "bin/conformance.js"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=22"
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"test": "vitest run",
|
|
28
28
|
"build": "tsup",
|
|
29
29
|
"prepack": "npm run build",
|
|
30
|
+
"version": "npm run manifest",
|
|
30
31
|
"lint": "eslint . --max-warnings=0",
|
|
31
32
|
"lint:fix": "eslint --fix .",
|
|
32
33
|
"manifest": "node ./bin/manifest.js",
|