@vibescore/tracker 0.2.0 → 0.2.1

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": "@vibescore/tracker",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Codex CLI token usage tracker (macOS-first, notify-driven).",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -421,7 +421,7 @@ async function installLocalTrackerApp({ appDir }) {
421
421
 
422
422
  function spawnInitSync({ trackerBinPath, packageName }) {
423
423
  const fallbackPkg = packageName || '@vibescore/tracker';
424
- const argv = ['sync'];
424
+ const argv = ['sync', '--drain'];
425
425
  const hasLocalRuntime = typeof trackerBinPath === 'string' && fssync.existsSync(trackerBinPath);
426
426
  const cmd = hasLocalRuntime
427
427
  ? [process.execPath, trackerBinPath, ...argv]