Skip to content

Commit ff37aad

Browse files
committed
0.9.1
1 parent 3eb9548 commit ff37aad

File tree

3 files changed

+143
-3
lines changed

3 files changed

+143
-3
lines changed

README.md

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ $ npm install -g katools
2626
$ katools COMMAND
2727
running command...
2828
$ katools (--version)
29+
katools/0.9.1 win32-x64 node-v20.18.1
30+
$ katools --help [COMMAND]
31+
USAGE
32+
$ katools COMMAND
33+
...
34+
```
35+
<!-- usagestop -->
36+
```sh-session
37+
$ npm install -g katools
38+
$ katools COMMAND
39+
running command...
40+
$ katools (--version)
2941
katools/0.9.0 linux-x64 node-v20.19.0
3042
$ katools --help [COMMAND]
3143
USAGE
@@ -61,6 +73,134 @@ EXAMPLES
6173
$ katools component movement
6274
```
6375

76+
_See code: [src/commands/component.ts](https://github.com/KeSuave/katools/blob/v0.9.1/src/commands/component.ts)_
77+
78+
## `katools entity NAME`
79+
80+
Adds a new entity to project
81+
82+
```
83+
USAGE
84+
$ katools entity NAME
85+
86+
ARGUMENTS
87+
NAME name of entity
88+
89+
DESCRIPTION
90+
Adds a new entity to project
91+
92+
EXAMPLES
93+
$ katools entity player
94+
```
95+
96+
_See code: [src/commands/entity.ts](https://github.com/KeSuave/katools/blob/v0.9.1/src/commands/entity.ts)_
97+
98+
## `katools help [COMMAND]`
99+
100+
Display help for katools.
101+
102+
```
103+
USAGE
104+
$ katools help [COMMAND...] [-n]
105+
106+
ARGUMENTS
107+
COMMAND... Command to show help for.
108+
109+
FLAGS
110+
-n, --nested-commands Include all nested commands in the output.
111+
112+
DESCRIPTION
113+
Display help for katools.
114+
```
115+
116+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.19/src/commands/help.ts)_
117+
118+
## `katools init`
119+
120+
Initializes a new KAPLAY project.
121+
122+
```
123+
USAGE
124+
$ katools init [-n <value>] [-s]
125+
126+
FLAGS
127+
-n, --name=<value> [default: katools] name of your game.
128+
-s, --skip skip prompts and use default values.
129+
130+
DESCRIPTION
131+
Initializes a new KAPLAY project.
132+
133+
EXAMPLES
134+
$ katools init
135+
```
136+
137+
_See code: [src/commands/init.ts](https://github.com/KeSuave/katools/blob/v0.9.1/src/commands/init.ts)_
138+
139+
## `katools plugin NAME`
140+
141+
adds a new plugin to the project
142+
143+
```
144+
USAGE
145+
$ katools plugin NAME
146+
147+
ARGUMENTS
148+
NAME name of plugin
149+
150+
DESCRIPTION
151+
adds a new plugin to the project
152+
153+
EXAMPLES
154+
$ katools plugin score
155+
```
156+
157+
_See code: [src/commands/plugin.ts](https://github.com/KeSuave/katools/blob/v0.9.1/src/commands/plugin.ts)_
158+
159+
## `katools scene NAME`
160+
161+
adds a scene to the project
162+
163+
```
164+
USAGE
165+
$ katools scene NAME
166+
167+
ARGUMENTS
168+
NAME name of scene
169+
170+
DESCRIPTION
171+
adds a scene to the project
172+
173+
EXAMPLES
174+
$ katools scene game
175+
```
176+
177+
_See code: [src/commands/scene.ts](https://github.com/KeSuave/katools/blob/v0.9.1/src/commands/scene.ts)_
178+
<!-- commandsstop -->
179+
* [`katools component NAME`](#katools-component-name)
180+
* [`katools entity NAME`](#katools-entity-name)
181+
* [`katools help [COMMAND]`](#katools-help-command)
182+
* [`katools init`](#katools-init)
183+
* [`katools plugin NAME`](#katools-plugin-name)
184+
* [`katools scene NAME`](#katools-scene-name)
185+
186+
## `katools component NAME`
187+
188+
Adds a new component to the project
189+
190+
```
191+
USAGE
192+
$ katools component NAME
193+
194+
ARGUMENTS
195+
NAME name of component
196+
197+
DESCRIPTION
198+
Adds a new component to the project
199+
200+
EXAMPLES
201+
$ katools component movement
202+
```
203+
64204
_See code: [src/commands/component.ts](https://github.com/KeSuave/katools/blob/v0.9.0/src/commands/component.ts)_
65205

66206
## `katools entity NAME`

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "katools",
33
"description": "A set of tools to help you focus on what matters most by taking care of the repetitive work.",
4-
"version": "0.9.0",
4+
"version": "0.9.1",
55
"author": "KeSuave",
66
"bin": {
77
"katools": "./bin/run.js"

0 commit comments

Comments
 (0)