standout 0.5.18 → 0.5.19
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 +1 -1
- package/dist/wrapped/render.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -105,7 +105,7 @@ async function maybeShareWrapped(wrapped) {
|
|
|
105
105
|
process.stderr.write(` your wrapped: ${wrapped.share_url}\n\n`);
|
|
106
106
|
return;
|
|
107
107
|
}
|
|
108
|
-
const ans = await askLine(chalk.white("
|
|
108
|
+
const ans = await askLine(chalk.white(" press enter to see your ai wrapped "));
|
|
109
109
|
process.stderr.write("\n");
|
|
110
110
|
const shared = !ans || ans.toLowerCase() !== "n";
|
|
111
111
|
if (!shared) {
|
package/dist/wrapped/render.js
CHANGED
|
@@ -985,7 +985,7 @@ async function renderWrappedCards(view, mode) {
|
|
|
985
985
|
}
|
|
986
986
|
// Share prompt
|
|
987
987
|
process.stdout.write("\n");
|
|
988
|
-
const ans = await askLine(chalk.white("
|
|
988
|
+
const ans = await askLine(chalk.white(" press enter to see your ai wrapped "));
|
|
989
989
|
process.stdout.write("\n");
|
|
990
990
|
const shared = !ans || ans.toLowerCase() !== "n";
|
|
991
991
|
return { shared, cancelled: false };
|