oss-pulse 0.1.0 → 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.
- package/README.md +8 -8
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ node dist/cli.js scan . --format markdown
|
|
|
15
15
|
After the package is published:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npx --yes oss-pulse@0.1.
|
|
18
|
+
npx --yes oss-pulse@0.1.1 scan . --format markdown
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## CLI
|
|
@@ -61,37 +61,37 @@ node dist/cli.js scan . --format markdown --fail-under 80
|
|
|
61
61
|
Pull request summary gate:
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
npx --yes oss-pulse@0.1.
|
|
64
|
+
npx --yes oss-pulse@0.1.1 scan . --format markdown --summary-only --fail-under 80 >> "$GITHUB_STEP_SUMMARY"
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
Release notes draft:
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
npx --yes oss-pulse@0.1.
|
|
70
|
+
npx --yes oss-pulse@0.1.1 scan . --format release-notes
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
Contributor onboarding report:
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
|
-
npx --yes oss-pulse@0.1.
|
|
76
|
+
npx --yes oss-pulse@0.1.1 scan . --format contributor-onboarding
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
Issue and pull request triage:
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
npx --yes oss-pulse@0.1.
|
|
82
|
+
npx --yes oss-pulse@0.1.1 scan . --format triage-suggestions
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
SARIF for code scanning:
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
npx --yes oss-pulse@0.1.
|
|
88
|
+
npx --yes oss-pulse@0.1.1 scan . --format sarif --output oss-pulse.sarif
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
GitHub workflow annotations:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
npx --yes oss-pulse@0.1.
|
|
94
|
+
npx --yes oss-pulse@0.1.1 scan . --format github-annotations
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
## GitHub Actions
|
|
@@ -110,7 +110,7 @@ jobs:
|
|
|
110
110
|
- uses: actions/checkout@v5
|
|
111
111
|
with:
|
|
112
112
|
fetch-depth: 0
|
|
113
|
-
- run: npx --yes oss-pulse@0.1.
|
|
113
|
+
- run: npx --yes oss-pulse@0.1.1 scan . --format markdown --summary-only --fail-under 80 >> "$GITHUB_STEP_SUMMARY"
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
Repository Action usage after publishing:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oss-pulse",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A small CLI that turns repository maintenance signals into an actionable OSS health report.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"check": "npm run lint && npm run typecheck && npm test",
|
|
24
24
|
"lint": "biome check .",
|
|
25
25
|
"test": "rm -rf .tmp/test-dist && tsc -p tsconfig.test.json && node --test .tmp/test-dist/tests/*.test.js",
|
|
26
|
-
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
26
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
27
|
+
"prepack": "npm run build"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"commander": "^12.1.0",
|