Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions packages/cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,21 +87,21 @@ export const cli = instance
() => {},
() => {
const art = `
@@@@
@@@@
@@@@
@@@@@@ @@@@@@@ @@@@ @@@@@ @@@@ @@@@@@@@ @@@@ @@@@@@@@ @@@@@ @@@@
@@@@@@@@@@@@@@@@@@@@ @@@@ @@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@ @@@@@
@@@@@ @@@@@ @@@@ @@@@@ @@@@@ @@@@@ @@@@@ @@@@ @@@@@
@@@@ @@@@@@@@@@@ @@@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@ ${bunny("@@")}
@@@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@ @@@@ @@@@@ ${bunny("@@ @@@ @@@@ @@@@@@")}
@@@@@ @@@@@ @@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@@@@@ ${bunny("@@@@ @@ @@ @@ @@")}
@@@@@ @@@@@ @@@@@ @@@@@ @@@@ @@@@ @@@@ @@@@ @@@@@@@@ ${bunny("@@ @@ @@@@@@@ @@")}
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@@@ ${bunny("@@ @@ @@ @@")}
@@@@ @@@@@@@@@ @@@@@@@@ @@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@ @@ ${bunny("@@ @@ @@@@@ +@@@")}
@@@@@
@@@@@
@@@@@
@@@@
@@@@
@@@@
@@@@@@ @@@@@@@ @@@@ @@@@@ @@@@ @@@@@@@@ @@@@ @@@@@@@@ @@@@@ @@@@
@@@@@@@@@@@@@@@@@@@@ @@@@ @@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@ @@@@@
@@@@@ @@@@@ @@@@ @@@@@ @@@@@ @@@@@ @@@@@ @@@@ @@@@@
@@@@ @@@@@@@@@@@ @@@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@ ${bunny("@@")}
@@@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@ @@@@ @@@@@ ${bunny("@@ @@@ @@@@ @@@@@@")}
@@@@@ @@@@@ @@@@ @@@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@@@@@ ${bunny("@@@@ @@ @@ @@ @@")}
@@@@@ @@@@@ @@@@@ @@@@@ @@@@ @@@@ @@@@ @@@@ @@@@@@@@ ${bunny("@@ @@ @@@@@@@ @@")}
@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@ @@@@ @@@@@ @@@@ @@@@@@ ${bunny("@@ @@ @@ @@")}
@@@@ @@@@@@@@@ @@@@@@@@ @@@ @@@@ @@@@@ @@@@ @@@@@ @@@@@ @@ ${bunny("@@ @@ @@@@@ +@@@")}
@@@@@
@@@@@
@@@@@
`;
if ((process.stdout.columns ?? 0) >= 135) {
console.log(art);
Expand Down Expand Up @@ -139,6 +139,7 @@ export const cli = instance
["Create an edge script", "bunny scripts init"],
["Add a domain to manage DNS", "bunny dns zones add example.com"],
["Create a dev sandbox", "bunny sandbox create my-sandbox"],
["Deploy a static site", "bunny sites deploy"],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep experimental Sites off the landing page

When users run bunny without arguments, this row now advertises sites deploy even though sitesNamespace remains in experimentalCommands and is still defined as a hidden namespace. This exposes an experimental feature on the public landing page while it remains absent from normal help, creating an inconsistent release surface; remove the example until Sites is fully promoted.

AGENTS.md reference: AGENTS.md:L1107-L1107

Useful? React with 👍 / 👎.

// ["Deploy an app", "bunny apps deploy"],
];

Expand Down