@supernovaio/cli
Version:
Supernova.io Command Line Interface
28 lines (26 loc) • 1.24 kB
JavaScript
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="24a64678-c4c5-55b7-8fd7-87a2d8b1a756")}catch(e){}}();
import { SETUP_DOCS_URL } from "../../constants.js";
import { renderPanel } from "../../ui.js";
function templateReadyLineTone(line, _lineIndex) {
if (line === "Next steps:") {
return "bold";
}
if (/^\d+\.\s/.test(line.trimStart())) {
return "none";
}
return "none";
}
export function renderTemplateReady(templateDestinationPath) {
return renderPanel("Container is created", [
`📂 Location: ${templateDestinationPath}`,
`📘 Docs: ${SETUP_DOCS_URL}`,
"",
"Next steps:",
"1. Set up your design system dependencies (private or public).",
"2. Configure private registry access (necessary for local install).",
"3. Verify the container before upload.",
"4. Upload the container to Supernova.",
], { lineTone: templateReadyLineTone });
}
//# sourceMappingURL=screens.js.map
//# debugId=24a64678-c4c5-55b7-8fd7-87a2d8b1a756