@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 +1 -1
- package/src/commands/init.js +1 -1
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -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]
|