Disable experimental commands

This commit is contained in:
Ryan Huang
2024-11-19 12:28:16 -05:00
parent f3887bcfe2
commit 3b266335ff

View File

@ -1,13 +1,11 @@
import { run, subcommands } from "cmd-ts";
import { bootstrap } from "./subcommands/bootstrap";
import { create } from "./subcommands/create";
import { dev } from "./subcommands/dev";
import { get } from "./subcommands/get";
import { importCmd } from "./subcommands/importCmd";
import { ls, ps } from "./subcommands/list";
import { load } from "./subcommands/load";
import { log } from "./subcommands/log";
import { push } from "./subcommands/push";
import { server } from "./subcommands/server";
import { status } from "./subcommands/status";
import { unload } from "./subcommands/unload";
@ -31,8 +29,8 @@ const cli = subcommands({
unload,
create,
log,
dev,
push,
// dev,
// push,
import: importCmd,
version,
bootstrap,