executable-stories-formatters 0.7.8 → 0.7.9
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 +1 -0
- package/dist/cli.js +1010 -78
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +725 -52
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +202 -5
- package/dist/index.d.ts +202 -5
- package/dist/index.js +722 -52
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -153,6 +153,7 @@ const generator = new ReportGenerator({
|
|
|
153
153
|
| `markdown` | Markdown user-story documentation | `.md` |
|
|
154
154
|
| `junit` | JUnit XML for CI integration | `.junit.xml` |
|
|
155
155
|
| `cucumber-json` | Cucumber JSON for tooling compatibility | `.cucumber.json` |
|
|
156
|
+
| `confluence` | Atlassian Document Format (ADF) JSON for Confluence pages and Jira issue descriptions (via REST API) | `.adf.json` |
|
|
156
157
|
|
|
157
158
|
## Writing a Custom Adapter
|
|
158
159
|
|