@botonic/cli 0.40.1-alpha.1 ā 0.40.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -7
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ npm install -g @botonic/cli
|
|
|
21
21
|
$ botonic COMMAND
|
|
22
22
|
running command...
|
|
23
23
|
$ botonic (-v|--version|version)
|
|
24
|
-
@botonic/cli/0.40.1
|
|
24
|
+
@botonic/cli/0.40.1 darwin-arm64 node-v22.19.0
|
|
25
25
|
$ botonic --help [COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ botonic COMMAND
|
|
@@ -65,7 +65,7 @@ EXAMPLES
|
|
|
65
65
|
Deploying to AWS...
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
_See code: [lib/commands/deploy.js](https://github.com/hubtype/botonic/blob/v0.40.1
|
|
68
|
+
_See code: [lib/commands/deploy.js](https://github.com/hubtype/botonic/blob/v0.40.1/lib/commands/deploy.js)_
|
|
69
69
|
|
|
70
70
|
## `botonic help [COMMAND]`
|
|
71
71
|
|
|
@@ -96,7 +96,7 @@ OPTIONS
|
|
|
96
96
|
-p, --path=path Path to botonic project. Defaults to current dir.
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
_See code: [lib/commands/login.js](https://github.com/hubtype/botonic/blob/v0.40.1
|
|
99
|
+
_See code: [lib/commands/login.js](https://github.com/hubtype/botonic/blob/v0.40.1/lib/commands/login.js)_
|
|
100
100
|
|
|
101
101
|
## `botonic logout`
|
|
102
102
|
|
|
@@ -110,7 +110,7 @@ OPTIONS
|
|
|
110
110
|
-p, --path=path Path to botonic project. Defaults to current dir.
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
-
_See code: [lib/commands/logout.js](https://github.com/hubtype/botonic/blob/v0.40.1
|
|
113
|
+
_See code: [lib/commands/logout.js](https://github.com/hubtype/botonic/blob/v0.40.1/lib/commands/logout.js)_
|
|
114
114
|
|
|
115
115
|
## `botonic new NAME [PROJECTNAME]`
|
|
116
116
|
|
|
@@ -130,7 +130,7 @@ EXAMPLE
|
|
|
130
130
|
⨠test_bot was successfully created!
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
_See code: [lib/commands/new.js](https://github.com/hubtype/botonic/blob/v0.40.1
|
|
133
|
+
_See code: [lib/commands/new.js](https://github.com/hubtype/botonic/blob/v0.40.1/lib/commands/new.js)_
|
|
134
134
|
|
|
135
135
|
## `botonic serve`
|
|
136
136
|
|
|
@@ -145,7 +145,7 @@ EXAMPLE
|
|
|
145
145
|
> Project is running at http://localhost:8080/
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
-
_See code: [lib/commands/serve.js](https://github.com/hubtype/botonic/blob/v0.40.1
|
|
148
|
+
_See code: [lib/commands/serve.js](https://github.com/hubtype/botonic/blob/v0.40.1/lib/commands/serve.js)_
|
|
149
149
|
|
|
150
150
|
## `botonic test`
|
|
151
151
|
|
|
@@ -172,5 +172,5 @@ EXAMPLE
|
|
|
172
172
|
Ran all test suites.
|
|
173
173
|
```
|
|
174
174
|
|
|
175
|
-
_See code: [lib/commands/test.js](https://github.com/hubtype/botonic/blob/v0.40.1
|
|
175
|
+
_See code: [lib/commands/test.js](https://github.com/hubtype/botonic/blob/v0.40.1/lib/commands/test.js)_
|
|
176
176
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"0.40.1
|
|
1
|
+
{"version":"0.40.1","commands":{"deploy":{"id":"deploy","description":"Deploy Botonic project to cloud provider","pluginName":"@botonic/cli","pluginType":"core","aliases":[],"examples":["$ botonic deploy\nBuilding...\nCreating bundle...\nUploading...\nš Bot deployed!\n","$ botonic deploy aws\nDeploying to AWS...\n"],"flags":{"command":{"name":"command","type":"option","char":"c","description":"Command to execute from the package \"scripts\" object"},"email":{"name":"email","type":"option","char":"e","description":"Email from Hubtype Organization"},"password":{"name":"password","type":"option","char":"p","description":"Password from Hubtype Organization"},"botName":{"name":"botName","type":"option","char":"b","description":"Name of the bot from Hubtype where you want to deploy"}},"args":[{"name":"provider","options":["hubtype"]}]},"login":{"id":"login","description":"Log in to Botonic","pluginName":"@botonic/cli","pluginType":"core","aliases":[],"examples":[],"flags":{"path":{"name":"path","type":"option","char":"p","description":"Path to botonic project. Defaults to current dir."}},"args":[]},"logout":{"id":"logout","description":"Log out of Botonic","pluginName":"@botonic/cli","pluginType":"core","aliases":[],"examples":[],"flags":{"path":{"name":"path","type":"option","char":"p","description":"Path to botonic project. Defaults to current dir."}},"args":[]},"new":{"id":"new","description":"Create a new Botonic project","pluginName":"@botonic/cli","pluginType":"core","aliases":[],"examples":["$ botonic new test_bot\nCreating...\n⨠test_bot was successfully created!\n"],"flags":{},"args":[{"name":"name","description":"name of the bot folder","required":true},{"name":"projectName","description":"OPTIONAL name of the bot project","required":false}]},"serve":{"id":"serve","description":"Serve your bot in your localhost","pluginName":"@botonic/cli","pluginType":"core","aliases":[],"examples":["$ botonic serve\n> Project is running at http://localhost:8080/"],"flags":{},"args":[]},"test":{"id":"test","description":"Test your Botonic components","pluginName":"@botonic/cli","pluginType":"core","aliases":[],"examples":["PASS tests/app.test.js\n ā TEST: hi.js (10ms)\n ā TEST: pizza.js (1ms)\n ā TEST: sausage.js (1ms)\n ā TEST: bacon.js\n ā TEST: pasta.js (1ms)\n ā TEST: cheese.js (1ms)\n ā TEST: tomato.js\n\nTest Suites: 1 passed, 1 total\nTests: 7 passed, 7 total\nSnapshots: 0 total\nTime: 1.223s\nRan all test suites."],"flags":{},"args":[]}}}
|