@piwitests/reporter 0.9.0 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -200,7 +200,7 @@ When `collectCiInfo` is enabled (default), the reporter auto-detects:
200
200
 
201
201
  ## Requirements
202
202
 
203
- - Node.js 18 or higher
203
+ - Node.js 18 or higher (the reporter runs inside your test project — the dashboard *server* itself targets Node 24+, or use its Docker image)
204
204
  - Playwright Test 1.40 or higher
205
205
  - Running Piwi Dashboard server
206
206
 
@@ -217,9 +217,9 @@ npm run reporter:dev # watch mode — auto-recompile on changes
217
217
 
218
218
  ### Source layout
219
219
 
220
- The package keeps its **public API** (`src/index.ts`, `src/fixtures.ts`, `src/public/`) separate from internal plumbing (`src/internal/<domain>/`) and the type model (`src/types/`). See [`ARCHITECTURE.md`](./ARCHITECTURE.md) for the full map — the public/internal split, the collect-and-submit data flow, the fallback ladder, and the conventions.
220
+ The package keeps its **public API** (`src/index.ts`, `src/public/`) separate from internal plumbing (`src/internal/<domain>/`) and the type model (`src/types/`). See [`ARCHITECTURE.md`](./ARCHITECTURE.md) for the full map — the public/internal split, the collect-and-submit data flow, the fallback ladder, and the conventions.
221
221
 
222
- The `package.json` `exports` field maps the main entry and `./fixtures` to their `dist/` counterparts.
222
+ Everything public the reporter, config helpers, and the capture fixtures is exported from the package's single entry point (`@piwitests/reporter`).
223
223
 
224
224
  ## Troubleshooting
225
225
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@piwitests/reporter",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Playwright reporter for sending test results to Piwi Dashboard",
5
5
  "url": "https://github.com/PiwiTests/platform",
6
6
  "homepage": "https://piwitests.github.io",