@sickr/replay 0.5.5 → 0.5.6
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/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -380,7 +380,7 @@ async function handleShare(runId, yes, open) {
|
|
|
380
380
|
if (!(await confirmPublish(yes, 'this run')))
|
|
381
381
|
return;
|
|
382
382
|
const url = await publishWithRetry(payload);
|
|
383
|
-
process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\nsickr: Replay Pro (live
|
|
383
|
+
process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\nsickr: Replay Pro (live + remote) — early access, rolling out in cohorts → https://sickr.ai/#waitlist\n`);
|
|
384
384
|
if (open)
|
|
385
385
|
openInBrowser(url);
|
|
386
386
|
}
|
|
@@ -401,7 +401,7 @@ async function handleShareCombined(sel, yes, open) {
|
|
|
401
401
|
if (!(await confirmPublish(yes, 'this combined replay')))
|
|
402
402
|
return;
|
|
403
403
|
const url = await publishWithRetry(payload);
|
|
404
|
-
process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\nsickr: Replay Pro (live
|
|
404
|
+
process.stdout.write(`sickr: published → ${url}\nsickr: this link expires in 24h.\nsickr: Replay Pro (live + remote) — early access, rolling out in cohorts → https://sickr.ai/#waitlist\n`);
|
|
405
405
|
if (open)
|
|
406
406
|
openInBrowser(url);
|
|
407
407
|
}
|
package/package.json
CHANGED