Skip to content

Commit

Permalink
v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cafreeman committed May 18, 2021
1 parent 7bcf897 commit 663e389
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,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.7/src/commands/env/create/compute.ts)_
_See code: [src/commands/env/create/compute.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/create/compute.ts)_

## `sfdx env:delete`

Expand All @@ -80,7 +80,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.7/src/commands/env/delete.ts)_
_See code: [src/commands/env/delete.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/delete.ts)_

## `sfdx env:display`

Expand All @@ -98,7 +98,7 @@ EXAMPLE
$ sfdx env:display --environment=billingApp-Scratch1
```

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

## `sfdx env:list`

Expand All @@ -121,7 +121,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.7/src/commands/env/list.ts)_
_See code: [src/commands/env/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/list.ts)_

## `sfdx env:logdrain:add`

Expand All @@ -139,7 +139,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.7/src/commands/env/logdrain/add.ts)_
_See code: [src/commands/env/logdrain/add.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/logdrain/add.ts)_

## `sfdx env:logdrain:list`

Expand All @@ -157,7 +157,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.7/src/commands/env/logdrain/list.ts)_
_See code: [src/commands/env/logdrain/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/logdrain/list.ts)_

## `sfdx env:logdrain:remove`

Expand All @@ -175,7 +175,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.7/src/commands/env/logdrain/remove.ts)_
_See code: [src/commands/env/logdrain/remove.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/logdrain/remove.ts)_

## `sfdx env:var:get KEY`

Expand All @@ -192,7 +192,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.7/src/commands/env/var/get.ts)_
_See code: [src/commands/env/var/get.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/var/get.ts)_

## `sfdx env:var:list`

Expand All @@ -209,7 +209,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.7/src/commands/env/var/list.ts)_
_See code: [src/commands/env/var/list.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/var/list.ts)_

## `sfdx env:var:set`

Expand All @@ -226,7 +226,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.7/src/commands/env/var/set.ts)_
_See code: [src/commands/env/var/set.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/var/set.ts)_

## `sfdx env:var:unset`

Expand All @@ -243,7 +243,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.7/src/commands/env/var/unset.ts)_
_See code: [src/commands/env/var/unset.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/env/var/unset.ts)_

## `sfdx generate:function`

Expand All @@ -264,7 +264,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.7/src/commands/generate/function.ts)_
_See code: [src/commands/generate/function.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/generate/function.ts)_

## `sfdx generate:project`

Expand All @@ -276,7 +276,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.7/src/commands/generate/project.ts)_
_See code: [src/commands/generate/project.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/src/commands/generate/project.ts)_

## `sfdx login:functions`

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

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

## `sfdx project:deploy:functions`

Expand All @@ -305,5 +305,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.7/src/commands/project/deploy/functions.ts)_
_See code: [src/commands/project/deploy/functions.ts](https://github.com/heroku/sf-plugin-functions/blob/v0.0.8/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.7",
"version": "0.0.8",
"author": "[email protected]",
"bin": {
"functions": "./bin/run"
Expand Down

0 comments on commit 663e389

Please sign in to comment.