bm2 1.0.13 → 1.0.14
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.14",
|
|
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
|
@@ -319,7 +319,8 @@ async function cmdStart(args: string[]) {
|
|
|
319
319
|
if (
|
|
320
320
|
ext === ".json" ||
|
|
321
321
|
scriptOrConfig.includes("ecosystem") ||
|
|
322
|
-
scriptOrConfig.includes("bm2.config")
|
|
322
|
+
scriptOrConfig.includes("bm2.config") ||
|
|
323
|
+
scriptOrConfig.includes("pm2.config")
|
|
323
324
|
) {
|
|
324
325
|
const config = await loadEcosystemConfig(scriptOrConfig);
|
|
325
326
|
const res = await sendToDaemon({ type: "ecosystem", data: config });
|