@andy2639/jest-context 1.0.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 ADDED
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0
4
+
5
+ - Promote package to stable release
6
+ - Publish under the `@andy2639` scope
7
+ - Fix CLI `bin` paths for npm publish compatibility
8
+ - Add executable shebang headers to CLI entrypoints
9
+
10
+ ## 0.1.0-beta.0
11
+
12
+ - Initial scaffold for `@andy2639/jest-context`
13
+ - Added core module structure
14
+ - Added CLI bin entrypoints
15
+ - Added TypeScript + tsup dual build (esm/cjs)
16
+ - Added terminal UI dependencies (ora, cli-progress, cfonts)
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Andres Guerrero
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # @andy2639/jest-context
2
+
3
+ CLI and core utilities to extract Jest context in LLM-friendly format.
4
+
5
+ ## Features
6
+
7
+ - `test-context`: summarize failed tests
8
+ - `coverage-context`: show files below coverage threshold
9
+ - `console-context`: collect console warnings/errors from tests
10
+ - terminal UX with `ora`, `cli-progress`, and `cfonts`
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ pnpm add -D @andy2639/jest-context
16
+ ```
17
+
18
+ ## CLI Usage
19
+
20
+ ```bash
21
+ test-context --all
22
+ coverage-context --threshold=90
23
+ console-context --all --only-errors
24
+ ```
25
+
26
+ ## Flags
27
+
28
+ - `--export`
29
+ - `--export=txt|md`
30
+ - `--no-banner`
31
+ - `--help`
32
+
33
+ ## Status
34
+
35
+ `1.0.0` stable release.