Skip to content

Commit 52e45e3

Browse files
committed
feat: xata scratch (#2562)
Synced from monorepo@8d77436a3df38d4cd69b72d0d97669ed161b63ce
1 parent 851d92d commit 52e45e3

4 files changed

Lines changed: 668 additions & 2 deletions

File tree

.sync-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2bf8e3e77e82813e28e873c06516b37aa8ce72e6
1+
8d77436a3df38d4cd69b72d0d97669ed161b63ce

src/app.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { StreamRoute } from './commands/stream';
1414
import { UpgradeCommand } from './commands/upgrade';
1515
import { VersionCommand } from './commands/version';
1616
import { OnboardCommand } from './commands/onboard';
17+
import { ScratchCommand } from './commands/scratch';
1718
import { CLI_NAME } from './lib/constants';
1819
import { getCLIVersion, getLatestVersion } from './lib/updates';
1920
import { AiRoute } from './commands/ai';
@@ -36,6 +37,7 @@ const routes = buildRouteMap({
3637
status: StatusCommand,
3738
version: VersionCommand,
3839
checkout: BranchCheckoutCommand,
40+
scratch: ScratchCommand,
3941

4042
upgrade: UpgradeCommand,
4143

@@ -49,7 +51,8 @@ const routes = buildRouteMap({
4951
hideRoute: {
5052
onboard: true,
5153
ai: true,
52-
stream: true
54+
stream: true,
55+
scratch: true
5356
}
5457
}
5558
});

0 commit comments

Comments
 (0)