@chahuadev/chahuadev-hub-app 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +29 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -57,7 +57,35 @@ chahuadev-hub
57
57
 
58
58
  ---
59
59
 
60
- ## 🚀 What It Does
60
+ ## �️ Troubleshooting
61
+
62
+ ### ENOTEMPTY error on Linux (directory not empty)
63
+
64
+ If you see `ENOTEMPTY` during install, a previous failed install left files behind. Clear them first:
65
+
66
+ ```bash
67
+ # If installed with npm-global prefix
68
+ rm -rf ~/.npm-global/lib/node_modules/@chahuadev/chahuadev-hub-app
69
+ npm install -g @chahuadev/chahuadev-hub-app --foreground-scripts --force
70
+
71
+ # If installed with sudo
72
+ sudo rm -rf /usr/lib/node_modules/@chahuadev/chahuadev-hub-app
73
+ sudo npm install -g @chahuadev/chahuadev-hub-app --foreground-scripts --force
74
+ ```
75
+
76
+ ### Executable not found after install
77
+
78
+ If `chahuadev-hub` command is not found after install, make sure `~/.npm-global/bin` is in your PATH:
79
+
80
+ ```bash
81
+ echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
82
+ source ~/.bashrc
83
+ chahuadev-hub
84
+ ```
85
+
86
+ ---
87
+
88
+ ## �🚀 What It Does
61
89
 
62
90
  Download and manage all Chahuadev apps in one place — including **Chahuadev Framework**, **Emoji Cleaner**, and **Junk Sweeper** — through a sleek dark-mode GUI.
63
91
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chahuadev/chahuadev-hub-app",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Chahuadev Hub — Official app launcher and distribution hub by Chahuadev",
5
5
  "main": "index.js",
6
6
  "bin": {