@merupatel/reachable 1.0.0 → 1.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 +14 -0
- package/README.md +2 -2
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.0.2](https://github.com/Meru143/reachable/compare/v1.0.1...v1.0.2) (2026-03-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* show explicit empty scan output ([4c3a439](https://github.com/Meru143/reachable/commit/4c3a439bea2946ba16bc606e44f7ca6c64a9cdb5))
|
|
7
|
+
|
|
8
|
+
## [1.0.1](https://github.com/Meru143/reachable/compare/v1.0.0...v1.0.1) (2026-03-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* prefer source entrypoints over dist artifacts ([50ec9da](https://github.com/Meru143/reachable/commit/50ec9da6879e4cbed3b3563dbd3202d639bf5642))
|
|
14
|
+
|
|
1
15
|
# 1.0.0 (2026-03-19)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ npm install -g @merupatel/reachable
|
|
|
27
27
|
Run without installing globally:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
npx reachable scan
|
|
30
|
+
npx @merupatel/reachable@latest scan
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
## Quick Start
|
|
@@ -150,7 +150,7 @@ jobs:
|
|
|
150
150
|
node-version: 22
|
|
151
151
|
cache: npm
|
|
152
152
|
- run: npm ci
|
|
153
|
-
- run: npx reachable scan --format markdown --fail-on high
|
|
153
|
+
- run: npx @merupatel/reachable@latest scan --format markdown --fail-on high
|
|
154
154
|
```
|
|
155
155
|
|
|
156
156
|
Use `--format sarif` to feed GitHub code scanning or `--format markdown` to post PR-friendly summaries.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@merupatel/reachable",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Dependency vulnerability reachability analyzer",
|
|
5
5
|
"bin": {
|
|
6
6
|
"reachable": "dist/cli/index.js"
|
|
@@ -47,10 +47,13 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
+
"overrides": {
|
|
51
|
+
"@actions/http-client": "3.0.2"
|
|
52
|
+
},
|
|
50
53
|
"devDependencies": {
|
|
51
54
|
"@semantic-release/changelog": "6.0.3",
|
|
52
55
|
"@semantic-release/git": "10.0.1",
|
|
53
|
-
"@semantic-release/npm": "
|
|
56
|
+
"@semantic-release/npm": "13.1.1",
|
|
54
57
|
"@types/node": "22.19.15",
|
|
55
58
|
"@typescript-eslint/eslint-plugin": "8.57.1",
|
|
56
59
|
"@typescript-eslint/parser": "8.57.1",
|
|
@@ -58,7 +61,7 @@
|
|
|
58
61
|
"eslint": "8.57.1",
|
|
59
62
|
"json-schema-traverse": "0.4.1",
|
|
60
63
|
"nock": "^14.0.10",
|
|
61
|
-
"semantic-release": "
|
|
64
|
+
"semantic-release": "25.0.3",
|
|
62
65
|
"tsup": "8.5.1",
|
|
63
66
|
"typescript": "5.7.3",
|
|
64
67
|
"vitest": "2.1.9"
|