antenna-fyi 1.2.36 → 1.2.37

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.
Files changed (2) hide show
  1. package/lib/cli.js +3 -1
  2. package/package.json +1 -1
package/lib/cli.js CHANGED
@@ -542,7 +542,9 @@ export async function handleWatch(f) {
542
542
  // Push to ALL available frameworks, not just one
543
543
  const pushMethods = new Set();
544
544
  if (f.push) {
545
- f.push.split(",").forEach(m => pushMethods.add(m.trim()));
545
+ // Support both --push hermes,openclaw and --push hermes --push openclaw
546
+ const raw = Array.isArray(f.push) ? f.push : [f.push];
547
+ raw.forEach(v => v.split(",").forEach(m => pushMethods.add(m.trim())));
546
548
  } else {
547
549
  try {
548
550
  execSync("which openclaw", { stdio: "pipe" });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antenna-fyi",
3
- "version": "1.2.36",
3
+ "version": "1.2.37",
4
4
  "description": "Antenna — nearby people discovery. CLI + MCP server + OpenClaw skill & plugin, all in one package.",
5
5
  "type": "module",
6
6
  "bin": {