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 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
- ![npm version](https://img.shields.io/badge/version-1.0.7-blue)
5
+ ![npm version](https://img.shields.io/badge/version-1.0.8-blue)
6
6
  ![license](https://img.shields.io/badge/license-MIT-green)
7
7
  ![node version](https://img.shields.io/badge/node->=12.0.0-brightgreen)
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.7
187
+ ## 📝 What's New in v1.0.8
188
188
 
189
189
  - ✨ Fixed installation documentation
190
190
  - 🎨 Beautiful colorized UI with Unicode borders
@@ -68,7 +68,7 @@ function header() {
68
68
  );
69
69
  console.log(
70
70
  c(
71
- " PROCESS KILLER UTILITY v1.0.1",
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.1", colors.yellow).padEnd(54),
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.7",
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",