Skip to content

Commit

Permalink
2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
acidjazz committed Feb 25, 2024
1 parent c2ebbdf commit 53c4f0c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 11 deletions.
36 changes: 26 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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]`

Expand All @@ -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]`

Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -360,7 +372,7 @@ Removes a plugin from the CLI.

```
USAGE
$ fume plugins:uninstall PLUGIN...
$ fume plugins uninstall PLUGIN...
ARGUMENTS
PLUGIN plugin to uninstall
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 53c4f0c

Please sign in to comment.