@delt/claude-alarm 0.6.25 → 0.6.26
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/dist/cli.js +2 -1
- package/dist/cli.js.map +1 -1
- package/dist/hub/server.js +2 -1
- package/dist/hub/server.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1332,7 +1332,8 @@ var init_server = __esm({
|
|
|
1332
1332
|
}
|
|
1333
1333
|
};
|
|
1334
1334
|
if (process.argv[1] && (process.argv[1].endsWith("hub/server.js") || process.argv[1].endsWith("hub/server.ts"))) {
|
|
1335
|
-
const
|
|
1335
|
+
const config2 = loadConfig();
|
|
1336
|
+
const hub = new HubServer(config2);
|
|
1336
1337
|
hub.start().catch((err) => {
|
|
1337
1338
|
logger.error("Failed to start hub:", err);
|
|
1338
1339
|
process.exit(1);
|