flowcollab 0.2.7 → 0.2.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.
Files changed (2) hide show
  1. package/bin/_client.mjs +1 -1
  2. package/package.json +1 -1
package/bin/_client.mjs CHANGED
@@ -127,7 +127,7 @@ export function arg(name, fallback) {
127
127
  const argv = process.argv.slice(2);
128
128
  for (let i = 0; i < argv.length; i++) {
129
129
  const a = argv[i];
130
- if (a === `--${name}`) return argv[i + 1] ?? '';
130
+ if (a === `--${name}`) { const next = argv[i + 1]; return (next !== undefined && !next.startsWith('--')) ? next : ''; }
131
131
  if (a.startsWith(`--${name}=`)) return a.slice(name.length + 3);
132
132
  }
133
133
  return fallback;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowcollab",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Multi-Claude coordination layer — shared task board + CLI for teams running Claude Code",
5
5
  "type": "module",
6
6
  "files": [