aeo-ready 1.7.6 → 1.7.7
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/recommendations.js +8 -1
package/package.json
CHANGED
package/src/recommendations.js
CHANGED
|
@@ -381,7 +381,14 @@ export async function showRecommendations(result) {
|
|
|
381
381
|
const answer = await ask(` ${optStr} `);
|
|
382
382
|
|
|
383
383
|
if (answer === "v") {
|
|
384
|
-
|
|
384
|
+
console.log("");
|
|
385
|
+
console.log(
|
|
386
|
+
prompt
|
|
387
|
+
.split("\n")
|
|
388
|
+
.map((line) => ` ${line}`)
|
|
389
|
+
.join("\n"),
|
|
390
|
+
);
|
|
391
|
+
console.log("");
|
|
385
392
|
} else if (answer === "c") {
|
|
386
393
|
const copied = copyToClipboard(prompt);
|
|
387
394
|
if (copied) {
|