@eslint-config-snapshot/api 0.9.0 → 0.14.0
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/index.cjs +434 -91
- package/dist/index.js +434 -91
- package/package.json +2 -1
- package/src/config.ts +32 -8
- package/src/diff.ts +51 -17
- package/src/extract.ts +19 -0
- package/src/index.ts +1 -1
- package/src/sampling.ts +351 -40
- package/src/snapshot.ts +41 -44
- package/test/config.test.ts +8 -4
- package/test/diff.test.ts +49 -1
- package/test/sampling.test.ts +50 -11
- package/test/snapshot.test.ts +31 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @eslint-config-snapshot/api
|
|
2
2
|
|
|
3
|
+
## 0.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Improve repository hygiene by expanding .gitignore for generated test report artifacts and Vitest local cache.
|
|
8
|
+
|
|
9
|
+
## 0.13.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Add richer GitHub CI reporting with JUnit test publication and coverage summaries.
|
|
14
|
+
Include Vitest coverage provider dependency for report generation.
|
|
15
|
+
|
|
16
|
+
## 0.12.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Add architecture guidance for API/CLI module boundaries and responsibilities.
|
|
21
|
+
Link architecture doc from README.
|
|
22
|
+
|
|
23
|
+
## 0.12.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- Add json/css to default sampling globs, keep md/mdx, and prioritize code files during sampling selection.
|
|
28
|
+
Rename CLI presentation module to run-context and keep formatter/runtime boundaries clearer.
|
|
29
|
+
|
|
30
|
+
## 0.11.0
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- b3c8406: Automate root version synchronization during release versioning and improve token-hint sampling configuration clarity.
|
|
35
|
+
|
|
36
|
+
## 0.10.0
|
|
37
|
+
|
|
38
|
+
### Minor Changes
|
|
39
|
+
|
|
40
|
+
- 1f6f0fc: Replace sampling hint globs with configurable `tokenHints` and improve sampling documentation clarity.
|
|
41
|
+
|
|
3
42
|
## 0.9.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|