project-compass 3.6.4 → 3.6.5
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 +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,7 @@ npm install -g project-compass
|
|
|
28
28
|
- **Background Orchestration**: Keep tasks running while you navigate the rest of your workspace.
|
|
29
29
|
- **Process Management**: Monitor status (Running, Finished, Failed, Killed) and forcefully terminate processes with `Shift+K`.
|
|
30
30
|
- **Task Identity**: Rename tasks on the fly with `Shift+R` to keep your workspace organized.
|
|
31
|
+
- **Cross-Platform Safety**: Automatically handles process signaling for both Unix (SIGKILL) and Windows (taskkill) to ensure clean exits.
|
|
31
32
|
|
|
32
33
|

|
|
33
34
|
|
|
@@ -76,7 +77,8 @@ npm install -g project-compass
|
|
|
76
77
|
|
|
77
78
|
Project Compass is designed to be personalized. All settings and custom commands are stored in a local JSON file.
|
|
78
79
|
|
|
79
|
-
- **
|
|
80
|
+
- **Linux/macOS**: `~/.project-compass/config.json`
|
|
81
|
+
- **Windows**: `C:\Users\<YourUser>\.project-compass\config.json`
|
|
80
82
|
|
|
81
83
|
### 🛠️ Adding Custom Commands
|
|
82
84
|
You can add your own project-specific commands directly within the app by pressing **Shift+C** in the Detail View. Use the format `Label|Command` (e.g., `Deploy|npm run deploy`).
|