githits 0.4.10 → 0.4.12
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.plugin/plugin.json +1 -1
- package/dist/cli.js +12493 -11337
- package/dist/index.js +1 -1
- package/dist/shared/{chunk-p9ak72j0.js → chunk-1045f3nq.js} +305 -631
- package/dist/shared/{chunk-mw1910qd.js → chunk-cp1jj1n1.js} +2 -2
- package/dist/shared/{chunk-fvpvx4x4.js → chunk-tmhsq5ft.js} +1 -1
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/skills/githits-package/SKILL.md +2 -2
- package/skills/githits-package/references/package.md +2 -2
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
createAuthStatusDependencies,
|
|
5
5
|
createContainer,
|
|
6
6
|
loadAutoLoginAuthSessionMetadata
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import"./chunk-
|
|
7
|
+
} from "./chunk-1045f3nq.js";
|
|
8
|
+
import"./chunk-tmhsq5ft.js";
|
|
9
9
|
export {
|
|
10
10
|
loadAutoLoginAuthSessionMetadata,
|
|
11
11
|
createContainer,
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@ githits pkg vulns npm:lodash@4.17.21 --scope non_affecting
|
|
|
36
36
|
|
|
37
37
|
githits pkg deps npm:express
|
|
38
38
|
githits pkg deps npm:express --lifecycle all
|
|
39
|
-
githits pkg deps npm:express --
|
|
39
|
+
githits pkg deps npm:express --depth 3 --json
|
|
40
40
|
|
|
41
41
|
githits pkg changelog npm:express --limit 3
|
|
42
42
|
githits pkg changelog npm:express --from 4.18.0 --to 4.19.0
|
|
@@ -51,7 +51,7 @@ githits pkg upgrade-review --package npm:zod@4.3.6..4.4.3 --package npm:lint-sta
|
|
|
51
51
|
- Need current package health: start with `githits pkg info <registry:name>`.
|
|
52
52
|
- Need security status for a specific installed version: use `githits pkg vulns <registry:name@version>`.
|
|
53
53
|
- Need historical advisories that do not affect the inspected version: use `pkg vulns --scope non_affecting`; use `--scope all` for affected plus historical rows.
|
|
54
|
-
- Need dependency footprint: start with `pkg deps`; add `--lifecycle all` for non-runtime groups and `--
|
|
54
|
+
- Need dependency footprint: start with `pkg deps`; add `--lifecycle all` for non-runtime groups and `--depth <n>` for aggregate transitive graph data.
|
|
55
55
|
- Need upgrade evidence for dependency updates, outdated package bumps, or lockfile changes: prefer `pkg upgrade-review` because it compares current vs target vulnerabilities, changelog range evidence, deprecation metadata, peer changes, dependency changes, and optional transitive evidence. It reports facts only; you still own the final assessment.
|
|
56
56
|
- Need release notes without a current-to-target comparison: use `pkg changelog`; use `--from`/`--to` for ranges and `--no-body` for compact timelines.
|
|
57
57
|
|
|
@@ -18,9 +18,9 @@ Supported registries: npm, PyPI, Hex, Crates, NuGet, Maven, Packagist, RubyGems,
|
|
|
18
18
|
|
|
19
19
|
`githits pkg deps <registry:name[@version]>` lists direct runtime dependencies by default.
|
|
20
20
|
|
|
21
|
-
Flags: `--lifecycle runtime|development|build|peer|optional|all`, `--
|
|
21
|
+
Flags: `--lifecycle runtime|development|build|peer|optional|all`, `--depth 1-10`, `--verbose`, `--json`.
|
|
22
22
|
|
|
23
|
-
Use `--
|
|
23
|
+
Use `--depth` to request transitive output capped to that traversal depth. Omit it for direct dependencies only.
|
|
24
24
|
|
|
25
25
|
## Changelog
|
|
26
26
|
|