executable-stories-formatters 1.15.0 → 1.16.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.
- package/dist/cli.js +613 -281
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +15 -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 +15 -9
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/schemas/README.md +1 -0
- package/schemas/examples/dotnet.json +5 -1
- package/schemas/examples/junit5.json +4 -0
- package/schemas/examples/pytest.json +4 -0
- package/schemas/examples/rust.json +2 -0
package/dist/index.d.cts
CHANGED
|
@@ -308,6 +308,10 @@ interface FormatterOptions {
|
|
|
308
308
|
mermaidEnabled?: boolean;
|
|
309
309
|
/** Days before the report shows a stale warning. 0 disables. Default: 7 */
|
|
310
310
|
staleAfterDays?: number;
|
|
311
|
+
/** Show the Share button in the interactive report header. Default: false. */
|
|
312
|
+
share?: boolean;
|
|
313
|
+
/** Command the share dialog shows. Default: `npx executable-stories share <output-dir>`. */
|
|
314
|
+
shareCommand?: string;
|
|
311
315
|
};
|
|
312
316
|
/**
|
|
313
317
|
* Run history store (see loadHistory/updateHistory). When set, the HTML
|
|
@@ -479,6 +483,8 @@ interface ResolvedFormatterOptions {
|
|
|
479
483
|
syntaxHighlighting: boolean;
|
|
480
484
|
mermaidEnabled: boolean;
|
|
481
485
|
staleAfterDays: number;
|
|
486
|
+
share: boolean;
|
|
487
|
+
shareCommand: string | undefined;
|
|
482
488
|
};
|
|
483
489
|
historyStore: HistoryStore | undefined;
|
|
484
490
|
junit: {
|
package/dist/index.d.ts
CHANGED
|
@@ -308,6 +308,10 @@ interface FormatterOptions {
|
|
|
308
308
|
mermaidEnabled?: boolean;
|
|
309
309
|
/** Days before the report shows a stale warning. 0 disables. Default: 7 */
|
|
310
310
|
staleAfterDays?: number;
|
|
311
|
+
/** Show the Share button in the interactive report header. Default: false. */
|
|
312
|
+
share?: boolean;
|
|
313
|
+
/** Command the share dialog shows. Default: `npx executable-stories share <output-dir>`. */
|
|
314
|
+
shareCommand?: string;
|
|
311
315
|
};
|
|
312
316
|
/**
|
|
313
317
|
* Run history store (see loadHistory/updateHistory). When set, the HTML
|
|
@@ -479,6 +483,8 @@ interface ResolvedFormatterOptions {
|
|
|
479
483
|
syntaxHighlighting: boolean;
|
|
480
484
|
mermaidEnabled: boolean;
|
|
481
485
|
staleAfterDays: number;
|
|
486
|
+
share: boolean;
|
|
487
|
+
shareCommand: string | undefined;
|
|
482
488
|
};
|
|
483
489
|
historyStore: HistoryStore | undefined;
|
|
484
490
|
junit: {
|