Skip to content

Commit 103dae5

Browse files
committed
Publish
- @voxable/cli@0.1.7 - @voxable/client@0.1.5 - @voxable/command@0.1.4 - @voxable/plugin-bespoken@0.2.0 - @voxable/plugin-colang@0.1.1
1 parent 619fdf0 commit 103dae5

8 files changed

Lines changed: 33 additions & 21 deletions

File tree

packages/cli/README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g @voxable/cli
1919
$ voxable COMMAND
2020
running command...
2121
$ voxable (-v|--version|version)
22-
@voxable/cli/0.1.6 darwin-x64 node-v15.12.0
22+
@voxable/cli/0.1.7 darwin-x64 node-v15.12.0
2323
$ voxable --help [COMMAND]
2424
USAGE
2525
$ voxable COMMAND
@@ -28,6 +28,7 @@ USAGE
2828
<!-- usagestop -->
2929
# Commands
3030
<!-- commands -->
31+
* [`voxable help [COMMAND]`](#voxable-help-command)
3132
* [`voxable plugins`](#voxable-plugins)
3233
* [`voxable plugins:inspect PLUGIN...`](#voxable-pluginsinspect-plugin)
3334
* [`voxable plugins:install PLUGIN...`](#voxable-pluginsinstall-plugin)
@@ -37,6 +38,23 @@ USAGE
3738
* [`voxable projects:export PROJECT_ID`](#voxable-projectsexport-project_id)
3839
* [`voxable projects:list`](#voxable-projectslist)
3940

41+
## `voxable help [COMMAND]`
42+
43+
display help for voxable
44+
45+
```
46+
USAGE
47+
$ voxable help [COMMAND]
48+
49+
ARGUMENTS
50+
COMMAND command to show help for
51+
52+
OPTIONS
53+
--all see all commands in CLI
54+
```
55+
56+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.2/src/commands/help.ts)_
57+
4058
## `voxable plugins`
4159

4260
list installed plugins
@@ -193,8 +211,6 @@ EXAMPLE
193211
$ voxable projects:export PROJECT_ID
194212
```
195213

196-
_See code: [src/commands/projects/export.ts](https://github.com/voxable/cli/blob/v0.1.6/src/commands/projects/export.ts)_
197-
198214
## `voxable projects:list`
199215

200216
list all projects
@@ -209,6 +225,4 @@ OPTIONS
209225
EXAMPLE
210226
$ voxable projects:list
211227
```
212-
213-
_See code: [src/commands/projects/list.ts](https://github.com/voxable/cli/blob/v0.1.6/src/commands/projects/list.ts)_
214228
<!-- commandsstop -->

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@voxable/cli",
33
"description": "A client for the Voxable conversation design platform's API.",
4-
"version": "0.1.6",
4+
"version": "0.1.7",
55
"author": "Voxable, Inc. <howdy@voxable.io>",
66
"bin": {
77
"voxable": "./bin/run"
@@ -11,8 +11,8 @@
1111
"@oclif/plugin-help": "^3.2.2",
1212
"@oclif/plugin-plugins": "1.10.0",
1313
"@types/cli-table": "0.3.0",
14-
"@voxable/client": "^0.1.4",
15-
"@voxable/command": "^0.1.3",
14+
"@voxable/client": "^0.1.5",
15+
"@voxable/command": "^0.1.4",
1616
"chalk": "4.1.1",
1717
"cli-table": "0.3.6",
1818
"cli-ux": "5.5.1",

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@voxable/client",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "The Voxable API client library for JavaScript.",
55
"main": "lib/",
66
"repository": "https://github.com/voxable/cli",

packages/command/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@voxable/command",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "A base command for the Voxable CLI.",
55
"main": "lib/",
66
"repository": "https://github.com/voxable/cli",

packages/plugin-bespoken/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g @voxable/plugin-bespoken
1919
$ voxable COMMAND
2020
running command...
2121
$ voxable (-v|--version|version)
22-
@voxable/plugin-bespoken/0.1.5 darwin-x64 node-v15.12.0
22+
@voxable/plugin-bespoken/0.2.0 darwin-x64 node-v15.12.0
2323
$ voxable --help [COMMAND]
2424
USAGE
2525
$ voxable COMMAND
@@ -32,7 +32,7 @@ USAGE
3232

3333
## `voxable bespoken:transform PROJECT_ID`
3434

35-
transform a Voxable project into Bespoken tests
35+
export a Voxable project and transform it into Bespoken tests
3636

3737
```
3838
USAGE
@@ -47,6 +47,4 @@ OPTIONS
4747
EXAMPLE
4848
$ voxable bespoken:transform PROJECT_ID
4949
```
50-
51-
_See code: [src/commands/bespoken/transform.ts](https://github.com/voxable/cli/blob/v0.1.5/src/commands/bespoken/transform.ts)_
5250
<!-- commandsstop -->

packages/plugin-bespoken/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@voxable/plugin-bespoken",
33
"description": "Bespoken plugin for the Voxable CLI.",
4-
"version": "0.1.5",
4+
"version": "0.2.0",
55
"author": "Voxable, Inc. <howdy@voxable.io>",
66
"main": "lib/",
77
"bugs": "https://github.com/voxable/cli/issues",
88
"dependencies": {
99
"@oclif/command": "^1",
1010
"@oclif/config": "^1",
11-
"@voxable/client": "^0.1.4",
12-
"@voxable/command": "^0.1.3",
11+
"@voxable/client": "^0.1.5",
12+
"@voxable/command": "^0.1.4",
1313
"cli-ux": "5.5.1",
1414
"cosmiconfig": "7.0.0",
1515
"tslib": "^1"

packages/plugin-colang/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ npm install -g @voxable/plugin-colang
2222
$ voxable COMMAND
2323
running command...
2424
$ voxable (-v|--version|version)
25-
@voxable/plugin-colang/0.1.0 darwin-x64 node-v15.12.0
25+
@voxable/plugin-colang/0.1.1 darwin-x64 node-v15.12.0
2626
$ voxable --help [COMMAND]
2727
USAGE
2828
$ voxable COMMAND

packages/plugin-colang/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@voxable/plugin-colang",
33
"description": "Colang plugin for the Voxable CLI.",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"author": "RoboSelf Techonology SRL <razvan@roboself.com>",
66
"main": "lib/",
77
"bugs": "https://github.com/voxable/cli/issues",
88
"dependencies": {
99
"@oclif/command": "^1",
1010
"@oclif/config": "^1",
11-
"@voxable/client": "^0.1.4",
12-
"@voxable/command": "^0.1.3",
11+
"@voxable/client": "^0.1.5",
12+
"@voxable/command": "^0.1.4",
1313
"cli-ux": "5.5.1",
1414
"cosmiconfig": "7.0.0",
1515
"tslib": "^1"

0 commit comments

Comments
 (0)