Skip to content
Merged
Show file tree
Hide file tree
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
48 changes: 0 additions & 48 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"test": "deno test --allow-all"
},
"dependencies": {
"@alphahydrae/exec": "^1.1.0",
"@commander-js/extra-typings": "^12.1.0",
"@inkjs/ui": "^2.0.0",
"@inquirer/prompts": "^5.1.2",
Expand Down Expand Up @@ -37,7 +36,6 @@
"prettier": "^3.5.3",
"react": "^18.3.1",
"semver": "^7.6.3",
"shescape": "^2.1.1",
"tiny-invariant": "^1.3.3",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
Expand Down
3 changes: 1 addition & 2 deletions src/helpers/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ const apiPaths: Record<string, Path<IdParams | never>> = {

vms_instances_list: "/v0/vms/instances",
vms_logs_list: "/v0/vms/logs",
vms_replace: "/v0/vms/replace",
vms_script_post: "/v0/vms/script",
vms_script_get: "/v0/vms/script",
vms_ssh_get: "/v0/vms/ssh",
vms_replace: "/v0/vms/replace",
};

export async function getWebAppUrl<T extends TokenParams | never>(
Expand Down
135 changes: 0 additions & 135 deletions src/lib/ssh.ts

This file was deleted.

3 changes: 0 additions & 3 deletions src/lib/vm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
} from "../helpers/errors.ts";
import { getApiUrl } from "../helpers/urls.ts";
import { isFeatureEnabled } from "./posthog.ts";
import { registerSsh } from "./ssh.ts";

type VMInstance = {
id: string;
Expand All @@ -35,8 +34,6 @@ export async function registerVM(program: Command) {
.aliases(["v", "vms"])
.description("Manage virtual machines");

registerSsh(vm);

vm.command("list")
.description("List all virtual machines")
.action(async () => {
Expand Down