styleproof 3.0.1 → 3.0.2
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 +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.0.2] - 2026-06-27
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **The composite Action now builds its checked-out source before running local
|
|
15
|
+
bins.** Because `dist/` is intentionally gitignored, the v3 Action ref could
|
|
16
|
+
install runtime dependencies and then fail when `bin/styleproof-report.mjs`
|
|
17
|
+
imported `../dist/report.js`. The Action runtime now installs the checkout's dev
|
|
18
|
+
toolchain with scripts disabled, runs `npm run build`, and executes the checked-out
|
|
19
|
+
entrypoints from that built source.
|
|
20
|
+
|
|
10
21
|
## [3.0.1] - 2026-06-27
|
|
11
22
|
|
|
12
23
|
### Added
|
|
@@ -830,7 +841,8 @@ number)`), so each viewport band can capture at its own height. Default remains
|
|
|
830
841
|
- `styleproof-diff` CLI: certifies a refactor (exit 0) or names the exact element,
|
|
831
842
|
property, and state that drifted (exit 1).
|
|
832
843
|
|
|
833
|
-
[Unreleased]: https://github.com/BenSheridanEdwards/StyleProof/compare/v3.0.
|
|
844
|
+
[Unreleased]: https://github.com/BenSheridanEdwards/StyleProof/compare/v3.0.2...HEAD
|
|
845
|
+
[3.0.2]: https://github.com/BenSheridanEdwards/StyleProof/compare/v3.0.1...v3.0.2
|
|
834
846
|
[3.0.1]: https://github.com/BenSheridanEdwards/StyleProof/compare/v3.0.0...v3.0.1
|
|
835
847
|
[3.0.0]: https://github.com/BenSheridanEdwards/StyleProof/compare/v2.5.0...v3.0.0
|
|
836
848
|
[2.5.0]: https://github.com/BenSheridanEdwards/StyleProof/compare/v2.4.0...v2.5.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styleproof",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Catch every CSS change before it ships — review PRs and certify refactors by the browser's computed styles, not pixels. Works with any styling system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"playwright",
|