executable-stories-formatters 1.1.0 → 1.2.0
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/dist/cli.js +546 -163
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +20 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +18 -7
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/schemas/explainer-v1.json +47 -0
- package/schemas/scenario-index-v1.json +5 -0
- package/templates/astro-thin/src/content.config.ts +11 -4
package/dist/index.d.cts
CHANGED
|
@@ -1392,6 +1392,12 @@ interface ScenarioIndex {
|
|
|
1392
1392
|
interface ScenarioIndexItem {
|
|
1393
1393
|
id: string;
|
|
1394
1394
|
title: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* Content hash (title + step keywords/texts) for explainer provenance —
|
|
1397
|
+
* copy into an explainer's frontmatter `scenarios[].hash` so
|
|
1398
|
+
* `check-explainers` can detect drift. Status is deliberately excluded.
|
|
1399
|
+
*/
|
|
1400
|
+
hash: string;
|
|
1395
1401
|
status: TestStatus;
|
|
1396
1402
|
feature: string;
|
|
1397
1403
|
sourceFile: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1392,6 +1392,12 @@ interface ScenarioIndex {
|
|
|
1392
1392
|
interface ScenarioIndexItem {
|
|
1393
1393
|
id: string;
|
|
1394
1394
|
title: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* Content hash (title + step keywords/texts) for explainer provenance —
|
|
1397
|
+
* copy into an explainer's frontmatter `scenarios[].hash` so
|
|
1398
|
+
* `check-explainers` can detect drift. Status is deliberately excluded.
|
|
1399
|
+
*/
|
|
1400
|
+
hash: string;
|
|
1395
1401
|
status: TestStatus;
|
|
1396
1402
|
feature: string;
|
|
1397
1403
|
sourceFile: string;
|