@crvy/rprtr 0.0.3 → 0.0.4
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/CHANGELOG.md +39 -0
- package/dist/reporter.cjs +669 -0
- package/dist/server.cjs +1003 -0
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,45 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.0.4] - 2026-04-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add CJS build for reporter and server entry points
|
|
13
|
+
- Add require export conditions for CJS resolution
|
|
14
|
+
|
|
15
|
+
### Documentation
|
|
16
|
+
|
|
17
|
+
- Add publint integration design spec
|
|
18
|
+
- Add publint integration plan
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Add @playwright/test to knip ignoreDependencies
|
|
23
|
+
|
|
24
|
+
### Miscellaneous
|
|
25
|
+
|
|
26
|
+
- Remove local smoke-test project
|
|
27
|
+
|
|
28
|
+
### Testing
|
|
29
|
+
|
|
30
|
+
- Approve screenshot baselines for darwin and linux
|
|
31
|
+
- Add smoke test for CJS/ESM dual resolution
|
|
32
|
+
|
|
33
|
+
### Ci
|
|
34
|
+
|
|
35
|
+
- Run Playwright tests inside Playwright Docker container
|
|
36
|
+
- Add unzip for setup-bun in Playwright container
|
|
37
|
+
- Add publint as non-blocking check in check.sh
|
|
38
|
+
|
|
39
|
+
### Deps
|
|
40
|
+
|
|
41
|
+
- Add publint for package.json validation
|
|
42
|
+
- Add publint for package.json validation
|
|
43
|
+
|
|
44
|
+
### Pub
|
|
45
|
+
|
|
46
|
+
- Chain publint after build in prepublishOnly
|
|
8
47
|
## [0.0.3] - 2026-04-10
|
|
9
48
|
|
|
10
49
|
### Fixed
|