diff --git a/.changeset/dull-hats-repair.md b/.changeset/dull-hats-repair.md new file mode 100644 index 0000000..c5038f5 --- /dev/null +++ b/.changeset/dull-hats-repair.md @@ -0,0 +1,7 @@ +--- +"create-emdash": patch +--- + +Remove manual bootstrap step from CLI output + +The create-emdash CLI no longer suggests running `bootstrap` as a manual step, since EmDash now auto-bootstraps on first run. diff --git a/packages/cloudflare/src/db/playground-toolbar.ts b/packages/cloudflare/src/db/playground-toolbar.ts index 9ef4644..b1841d5 100644 --- a/packages/cloudflare/src/db/playground-toolbar.ts +++ b/packages/cloudflare/src/db/playground-toolbar.ts @@ -11,12 +11,12 @@ */ export interface PlaygroundToolbarConfig { - /** When the playground was created (ISO string) */ - createdAt: string; - /** TTL in seconds */ - ttl: number; - /** Whether edit mode is currently active */ - editMode: boolean; + /** When the playground was created (ISO string) */ + createdAt: string; + /** TTL in seconds */ + ttl: number; + /** Whether edit mode is currently active */ + editMode: boolean; } const RE_AMP = /&/g; @@ -25,9 +25,9 @@ const RE_LT = //g; export function renderPlaygroundToolbar(config: PlaygroundToolbarConfig): string { - const { createdAt, ttl, editMode } = config; + const { createdAt, ttl, editMode } = config; - return ` + return `