@burakboduroglu/portkill 0.4.2 → 0.4.3
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 +4 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -71,6 +71,10 @@ portkill --gui
|
|
|
71
71
|
|
|
72
72
|
Press **Ctrl+C** to stop the GUI server. The printed URL is loopback-only.
|
|
73
73
|
|
|
74
|
+
### GUI walkthrough (video)
|
|
75
|
+
|
|
76
|
+
[](https://youtu.be/_-Z6zwiEHmg)
|
|
77
|
+
|
|
74
78
|
---
|
|
75
79
|
|
|
76
80
|
## CLI flags (short)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@burakboduroglu/portkill",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Kill processes listening on TCP ports — CLI for macOS/Linux: dry-run, port ranges, --list, optional local web UI (--gui). Node.js 18+.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -34,7 +34,9 @@
|
|
|
34
34
|
"test:watch": "vitest",
|
|
35
35
|
"lint": "eslint .",
|
|
36
36
|
"format": "prettier --write .",
|
|
37
|
-
"
|
|
37
|
+
"release:bump-patch": "npm version patch --no-git-tag-version",
|
|
38
|
+
"release:bump-minor": "npm version minor --no-git-tag-version",
|
|
39
|
+
"prepublishOnly": "node scripts/assert-version-not-published.mjs && npm run build && npm test"
|
|
38
40
|
},
|
|
39
41
|
"keywords": [
|
|
40
42
|
"cli",
|