ework-aio 0.5.16 → 0.5.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ework-aio",
3
- "version": "0.5.16",
3
+ "version": "0.5.18",
4
4
  "description": "All-in-one installer for ework (issue tracker) + ework-daemon (AI bridge) + opencode-ework (plugin). One command: npm i -g ework-aio && ework-aio install.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -240,6 +240,14 @@ export async function runStart(
240
240
  ): Promise<void> {
241
241
  const paths = resolvePaths({ dataDir: opts.dataDir, scope: opts.scope, useSystemd: false });
242
242
  for (const { sp, label } of iterTargets(paths, target)) {
243
+ if (label === "router") {
244
+ try {
245
+ await startFromSp(sp, label, logger);
246
+ } catch (e) {
247
+ logger.log(`ework-router skipped (${(e as Error).message})`);
248
+ }
249
+ continue;
250
+ }
243
251
  await startFromSp(sp, label, logger);
244
252
  }
245
253
  }