Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cafreeman committed May 11, 2021
1 parent d491ebb commit 5bbbe7e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $ npm install -g @salesforce/plugin-functions
$ sfdx COMMAND
running command...
$ sfdx (-v|--version|version)
@salesforce/plugin-functions/0.0.5 darwin-x64 node-v12.18.4
@salesforce/plugin-functions/0.0.6 darwin-x64 node-v12.18.4
$ sfdx --help [COMMAND]
USAGE
$ sfdx COMMAND
Expand Down Expand Up @@ -74,7 +74,7 @@ EXAMPLES
$ sfdx env:create:compute --connected-org my-scratch-org
```

_See code: [src/commands/env/create/compute.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/create/compute.ts)_
_See code: [src/commands/env/create/compute.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/create/compute.ts)_

## `sfdx env:delete`

Expand All @@ -93,7 +93,7 @@ EXAMPLES
$ sfdx env:delete --environment=billingApp-Scratch1 --confirm=billingApp-Scratch1
```

_See code: [src/commands/env/delete.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/delete.ts)_
_See code: [src/commands/env/delete.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/delete.ts)_

## `sfdx env:list`

Expand All @@ -116,7 +116,7 @@ EXAMPLES
$ sfdx env:list --environment-type org --environment-type compute
```

_See code: [src/commands/env/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/list.ts)_
_See code: [src/commands/env/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/list.ts)_

## `sfdx env:log:tail`

Expand All @@ -133,7 +133,7 @@ EXAMPLE
sfdx env:log:tail --environment=billingApp-Scratch1
```

_See code: [src/commands/env/log/tail.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/log/tail.ts)_
_See code: [src/commands/env/log/tail.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/log/tail.ts)_

## `sfdx env:logdrain:add`

Expand All @@ -151,7 +151,7 @@ EXAMPLE
$ sfdx env:logdrain:add --environment=billingApp-Sandbox --url=https://example.com/drain
```

_See code: [src/commands/env/logdrain/add.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/logdrain/add.ts)_
_See code: [src/commands/env/logdrain/add.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/logdrain/add.ts)_

## `sfdx env:logdrain:list`

Expand All @@ -169,7 +169,7 @@ EXAMPLE
$ sfdx env:logdrain:list --environment=billingApp-Sandbox
```

_See code: [src/commands/env/logdrain/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/logdrain/list.ts)_
_See code: [src/commands/env/logdrain/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/logdrain/list.ts)_

## `sfdx env:logdrain:remove`

Expand All @@ -187,7 +187,7 @@ EXAMPLE
$ sfdx env:logdrain:remove --environment=billingApp-Sandbox --url=syslog://syslog-a.logdna.com:11137
```

_See code: [src/commands/env/logdrain/remove.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/logdrain/remove.ts)_
_See code: [src/commands/env/logdrain/remove.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/logdrain/remove.ts)_

## `sfdx env:var:get KEY`

Expand All @@ -204,7 +204,7 @@ EXAMPLE
$ sfdx env:var:get foo --environment=my-environment
```

_See code: [src/commands/env/var/get.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/get.ts)_
_See code: [src/commands/env/var/get.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/var/get.ts)_

## `sfdx env:var:list`

Expand All @@ -221,7 +221,7 @@ EXAMPLE
$ sfdx env:var:list --environment=my-environment
```

_See code: [src/commands/env/var/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/list.ts)_
_See code: [src/commands/env/var/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/var/list.ts)_

## `sfdx env:var:set`

Expand All @@ -238,7 +238,7 @@ EXAMPLE
$ sfdx env:var:set foo=bar --environment=my-environment
```

_See code: [src/commands/env/var/set.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/set.ts)_
_See code: [src/commands/env/var/set.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/var/set.ts)_

## `sfdx env:var:unset`

Expand All @@ -255,7 +255,7 @@ EXAMPLE
$ sfdx env:var:unset foo --environment=my-environment
```

_See code: [src/commands/env/var/unset.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/env/var/unset.ts)_
_See code: [src/commands/env/var/unset.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/env/var/unset.ts)_

## `sfdx generate:function`

Expand All @@ -276,7 +276,7 @@ EXAMPLE
$ sfdx evergreen:function:create MyFunction --language=javascript
```

_See code: [src/commands/generate/function.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/generate/function.ts)_
_See code: [src/commands/generate/function.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/generate/function.ts)_

## `sfdx generate:project`

Expand All @@ -288,7 +288,7 @@ OPTIONS
-n, --name=name (required) name of the generated project
```

_See code: [src/commands/generate/project.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/generate/project.ts)_
_See code: [src/commands/generate/project.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/generate/project.ts)_

## `sfdx login:functions`

Expand All @@ -302,7 +302,7 @@ EXAMPLE
$ sfdx login:functions
```

_See code: [src/commands/login/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/login/functions.ts)_
_See code: [src/commands/login/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/login/functions.ts)_

## `sfdx project:deploy:functions`

Expand All @@ -317,5 +317,5 @@ OPTIONS
--force ignore warnings and overwrite remote repository (not allowed in production)
```

_See code: [src/commands/project/deploy/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.5/src/commands/project/deploy/functions.ts)_
_See code: [src/commands/project/deploy/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.6/src/commands/project/deploy/functions.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@salesforce/plugin-functions",
"description": "Functions plugin for the SF CLI",
"version": "0.0.5",
"version": "0.0.6",
"author": "[email protected]",
"bin": {
"functions": "./bin/run"
Expand Down

0 comments on commit 5bbbe7e

Please sign in to comment.