diff --git a/flake.nix b/flake.nix index b0673f2..e735b00 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,7 @@ packages.default = pkgs.deno2nix.mkExecutable { pname = "repl"; - version = "0.6.0"; + version = "0.6.1"; src = ./.; lockfile = "./deno.lock"; diff --git a/main.ts b/main.ts index f7159ba..41b532e 100644 --- a/main.ts +++ b/main.ts @@ -112,7 +112,7 @@ if (import.meta.main) { ./((((((((((((((((((((((((((( . .`) ); - console.log("Repl v0.6.0 🚀 ✨"); + console.log("Repl v0.6.1 🚀 ✨"); console.log("exit using ctrl+c, or exit, type help for more info"); repl(); } diff --git a/plugins/neon.ts b/plugins/neon.ts index dae6fd4..f6257c3 100644 --- a/plugins/neon.ts +++ b/plugins/neon.ts @@ -28,23 +28,23 @@ class Neon implements Plugin { help: () => { console.log(` Commands: - neonctl auth + auth └────────────────> Authenticate - neonctl me + me └────────────────> Show current user - neonctl projects + projects └────────────────> Manage projects - neonctl branches + branches └────────────────> Manage branches - neonctl databases + databases └────────────────> Manage databases - neonctl roles + roles └────────────────> Manage roles - neonctl operations + operations └────────────────> Manage operations - neonctl connection-string [branch] + connection-string [branch] └────────────────> Get connection string - neonctl completion + completion └────────────────> generate completion script `); return Promise.resolve();