process-killer-cli 1.0.7 → 1.0.8
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 +2 -2
- package/bin/process-killer.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> A fast, cross-platform utility to safely kill processes using specific ports on Windows, macOS, and Linux.
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|

|
|
8
8
|
|
|
@@ -184,7 +184,7 @@ sudo fuser -k 3000/tcp
|
|
|
184
184
|
npm install -g process-killer-cli@latest
|
|
185
185
|
```
|
|
186
186
|
|
|
187
|
-
## 📝 What's New in v1.0.
|
|
187
|
+
## 📝 What's New in v1.0.8
|
|
188
188
|
|
|
189
189
|
- ✨ Fixed installation documentation
|
|
190
190
|
- 🎨 Beautiful colorized UI with Unicode borders
|
package/bin/process-killer.js
CHANGED
|
@@ -68,7 +68,7 @@ function header() {
|
|
|
68
68
|
);
|
|
69
69
|
console.log(
|
|
70
70
|
c(
|
|
71
|
-
" PROCESS KILLER UTILITY v1.0.
|
|
71
|
+
" PROCESS KILLER UTILITY v1.0.8",
|
|
72
72
|
colors.bold + colors.cyan,
|
|
73
73
|
),
|
|
74
74
|
);
|
|
@@ -158,7 +158,7 @@ function showDevInfo() {
|
|
|
158
158
|
);
|
|
159
159
|
console.log(
|
|
160
160
|
c("║", colors.cyan) +
|
|
161
|
-
c(" Version 1.0.
|
|
161
|
+
c(" Version 1.0.8", colors.yellow).padEnd(54),
|
|
162
162
|
);
|
|
163
163
|
console.log(
|
|
164
164
|
c("║", colors.cyan) + c(" License MIT", colors.yellow).padEnd(54),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "process-killer-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A utility to safely find and kill processes using specific ports on Linux/macOS. Perfect for backend developers dealing with port conflicts.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|