haltest 1.0.4 → 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 +7 -0
- package/backend/.turbo/turbo-test.log +220 -321
- package/backend/README.md +7 -3
- package/backend/database.sqlite +0 -0
- package/backend/logs/access.log +35 -0
- package/backend/package.json +1 -0
- package/backend/public/app/assets/{CDWEKZTF-Dt77QWs-.js → CDWEKZTF-vVLSDS-m.js} +1 -1
- package/backend/public/app/assets/index-C_1kZc68.css +1 -0
- package/backend/public/app/assets/{index-LXKmc4f2.js → index-CkaGmFpp.js} +65 -65
- package/backend/public/app/index.html +2 -2
- package/backend/services/browser.service.js +7 -1
- package/bin/haltest.js +110 -73
- package/package.json +1 -1
- package/backend/public/app/assets/index-C37xcdTn.css +0 -1
package/README.md
CHANGED
|
@@ -104,6 +104,13 @@ Pull the latest changes from GitHub, install all dependencies, and rebuild the f
|
|
|
104
104
|
pnpm run update:app
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
+
### Port Management & Cleanup
|
|
108
|
+
If you encounter `EADDRINUSE` errors or need to clear the development ports (2001 and 3000), use the unified stop command:
|
|
109
|
+
```bash
|
|
110
|
+
pnpm run stop
|
|
111
|
+
```
|
|
112
|
+
The CLI launcher also features **smart port detection**—it will automatically detect if the backend is already running and connect to it instead of failing.
|
|
113
|
+
|
|
107
114
|
### Publish a New CLI Release
|
|
108
115
|
*(Maintainers only)*. This command bumps the patch version, runs the standalone build for the CLI, and publishes it to NPM:
|
|
109
116
|
```bash
|