From 53c4f0c5709c0b6e8c6f3fef063d2f52a81decf2 Mon Sep 17 00:00:00 2001 From: kevin olson Date: Sun, 25 Feb 2024 01:15:01 -0600 Subject: [PATCH] 2.0.7 --- README.md | 36 ++++++++++++++++++++++++++---------- package.json | 2 +- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b831616..7408098 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ $ npm install -g fume-cli $ fume COMMAND running command... $ fume (--version) -fume-cli/2.0.6 darwin-arm64 node-v18.15.0 +fume-cli/2.0.7 darwin-arm64 node-v18.15.0 $ fume --help [COMMAND] USAGE $ fume COMMAND @@ -63,6 +63,8 @@ ALIASES $ fume login ``` +_See code: [src/commands/auth/login.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.7/src/commands/auth/login.ts)_ + ## `fume auth logout` Invalidate token and remove credentials @@ -78,6 +80,8 @@ ALIASES $ fume logout ``` +_See code: [src/commands/auth/logout.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.7/src/commands/auth/logout.ts)_ + ## `fume auth status` View authentication status @@ -93,6 +97,8 @@ ALIASES $ fume status ``` +_See code: [src/commands/auth/status.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.7/src/commands/auth/status.ts)_ + ## `fume config` Generate a fume.yml config @@ -108,7 +114,7 @@ DESCRIPTION Generate a fume.yml config ``` -_See code: [dist/commands/config.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.6/dist/commands/config.ts)_ +_See code: [src/commands/config.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.7/src/commands/config.ts)_ ## `fume deploy [ENVIRONMENT]` @@ -131,7 +137,7 @@ EXAMPLES $ fume deploy staging ``` -_See code: [dist/commands/deploy.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.6/dist/commands/deploy.ts)_ +_See code: [src/commands/deploy.ts](https://github.com/fumeapp/fume-cli/blob/v2.0.7/src/commands/deploy.ts)_ ## `fume help [COMMAND]` @@ -209,7 +215,7 @@ Installs a plugin into the CLI. ``` USAGE - $ fume plugins:install PLUGIN... + $ fume plugins add plugins:install PLUGIN... ARGUMENTS PLUGIN Plugin to install. @@ -247,7 +253,7 @@ Displays installation properties of a plugin. ``` USAGE - $ fume plugins:inspect PLUGIN... + $ fume plugins inspect PLUGIN... ARGUMENTS PLUGIN [default: .] Plugin to inspect. @@ -266,13 +272,15 @@ EXAMPLES $ fume plugins:inspect myplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/inspect.ts)_ + ## `fume plugins:install PLUGIN...` Installs a plugin into the CLI. ``` USAGE - $ fume plugins:install PLUGIN... + $ fume plugins install PLUGIN... ARGUMENTS PLUGIN Plugin to install. @@ -304,13 +312,15 @@ EXAMPLES $ fume plugins:install someuser/someplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/install.ts)_ + ## `fume plugins:link PLUGIN` Links a plugin into the CLI for development. ``` USAGE - $ fume plugins:link PLUGIN + $ fume plugins link PLUGIN ARGUMENTS PATH [default: .] path to plugin @@ -331,13 +341,15 @@ EXAMPLES $ fume plugins:link myplugin ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/link.ts)_ + ## `fume plugins:uninstall PLUGIN...` Removes a plugin from the CLI. ``` USAGE - $ fume plugins:uninstall PLUGIN... + $ fume plugins remove plugins:uninstall PLUGIN... ARGUMENTS PLUGIN plugin to uninstall @@ -360,7 +372,7 @@ Removes a plugin from the CLI. ``` USAGE - $ fume plugins:uninstall PLUGIN... + $ fume plugins uninstall PLUGIN... ARGUMENTS PLUGIN plugin to uninstall @@ -377,13 +389,15 @@ ALIASES $ fume plugins remove ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/uninstall.ts)_ + ## `fume plugins:uninstall PLUGIN...` Removes a plugin from the CLI. ``` USAGE - $ fume plugins:uninstall PLUGIN... + $ fume plugins unlink plugins:uninstall PLUGIN... ARGUMENTS PLUGIN plugin to uninstall @@ -416,6 +430,8 @@ DESCRIPTION Update installed plugins. ``` +_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.4.3/src/commands/plugins/update.ts)_ + ## `fume status` View authentication status diff --git a/package.json b/package.json index a1a1b60..5ca5f4b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "fume-cli", "description": "fume command line interface", - "version": "2.0.6", + "version": "2.0.7", "author": "acidjazz @acidjazz", "bin": { "fume": "bin/run"