We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91de492 commit 64aff94Copy full SHA for 64aff94
2 files changed
.changeset/quiet-rings-mix.md
@@ -0,0 +1,5 @@
1
+---
2
+"replexica": patch
3
4
+
5
+rename logout cli flag
packages/cli/src/auth.ts
@@ -13,13 +13,13 @@ export default new Command()
13
.command("auth")
14
.description("Authenticate with Replexica API")
15
.helpOption("-h, --help", "Show help")
16
- .option("-d, --delete", "Delete existing authentication")
17
- .option("-l, --login", "Authenticate with Replexica API")
+ .option("--logout", "Delete existing authentication")
+ .option("--login", "Authenticate with Replexica API")
18
.action(async (options) => {
19
const env = getEnv();
20
let config = await loadSettings();
21
22
- if (options.delete) {
+ if (options.logout) {
23
await logout();
24
}
25
if (options.login) {
0 commit comments