@regressionproof/jest-reporter 0.0.1 → 0.1.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/CHANGELOG.md +30 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,30 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.1.1](https://github.com/sprucelabsai-community/regressionproof/compare/v0.1.0...v0.1.1) (2026-01-12)
7
+
8
+ **Note:** Version bump only for package @regressionproof/jest-reporter
9
+
10
+
11
+
12
+
13
+
14
+ # 0.1.0 (2026-01-12)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * configure package publishing ([fe9f0ca](https://github.com/sprucelabsai-community/regressionproof/commit/fe9f0ca))
20
+
21
+
22
+ ### Documentation
23
+
24
+ * simplify README, add ARCHITECTURE.md ([8246e6e](https://github.com/sprucelabsai-community/regressionproof/commit/8246e6e))
25
+
26
+
27
+ ### Features
28
+
29
+ * implement jest-reporter with config loading and result transformation ([675e0b4](https://github.com/sprucelabsai-community/regressionproof/commit/675e0b4))
30
+ * lerna, CJS builds, slug validation, jest-reporter scaffold ([2516cac](https://github.com/sprucelabsai-community/regressionproof/commit/2516cac))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regressionproof/jest-reporter",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -45,7 +45,7 @@
45
45
  "watch.tsc": "tsc -w"
46
46
  },
47
47
  "dependencies": {
48
- "@regressionproof/snapshotter": "^0.0.1"
48
+ "@regressionproof/snapshotter": "^0.1.1"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@jest/reporters": "^30.2.0",
@@ -87,5 +87,6 @@
87
87
  "moduleNameMapper": {
88
88
  "^#spruce/(.*)$": "<rootDir>/build/.spruce/$1"
89
89
  }
90
- }
90
+ },
91
+ "gitHead": "3d13b4ce3234f7a108cf5588836499f75196463f"
91
92
  }