From 3b266335ffd9d987fdee2254c855ecc2ec7c20ec Mon Sep 17 00:00:00 2001 From: Ryan Huang Date: Tue, 19 Nov 2024 12:28:16 -0500 Subject: [PATCH] Disable experimental commands --- src/index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index f068a8d..4660e99 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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,