bm2 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/package.json +1 -1
- package/src/index.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bm2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A blazing-fast, full-featured process manager built entirely on Bun native APIs. The modern PM2 replacement — zero Node.js dependencies, pure Bun performance.",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"module": "src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -108,7 +108,8 @@ async function sendToDaemon(msg: DaemonMessage): Promise<DaemonResponse> {
|
|
|
108
108
|
|
|
109
109
|
return resJson;
|
|
110
110
|
} catch (e: any) {
|
|
111
|
-
console.log("Results returned "+res?.text())
|
|
111
|
+
console.log("Results returned: " + await res?.text())
|
|
112
|
+
console.log()
|
|
112
113
|
console.log("sendToDaemon#Error:", e, e.stack)
|
|
113
114
|
return { type: "error", error: "Fetch Error", success: false }
|
|
114
115
|
}
|