ht-skills 0.2.4 → 0.2.5
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/lib/cli.js +2 -2
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -242,7 +242,7 @@ function summarizePreviewErrors(preview) {
|
|
|
242
242
|
async function promptToOpenBrowser(url, deps = {}) {
|
|
243
243
|
const ask = deps.ask || null;
|
|
244
244
|
if (ask) {
|
|
245
|
-
await ask("Press ENTER to open in the browser
|
|
245
|
+
await ask("Press ENTER to open in the browser...");
|
|
246
246
|
return;
|
|
247
247
|
}
|
|
248
248
|
|
|
@@ -259,7 +259,7 @@ async function promptToOpenBrowser(url, deps = {}) {
|
|
|
259
259
|
output: process.stdout,
|
|
260
260
|
});
|
|
261
261
|
try {
|
|
262
|
-
await rl.question("Press ENTER to open in the browser
|
|
262
|
+
await rl.question("Press ENTER to open in the browser...");
|
|
263
263
|
} finally {
|
|
264
264
|
rl.close();
|
|
265
265
|
}
|