Skip to content

Commit a92d7d9

Browse files
committed
update version + match docs
1 parent 5a21662 commit a92d7d9

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

apps/docs/pages/docs/commandkit-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Trying to execute a command when this is set to at-least 1 role ID will call a b
154154
155155
This is used to disable CommandKit's built-in validation functions. Setting this to `true` will ignore the default behaviour of validating who is running commands marked with `devOnly`.
156156
157-
### `bulkRegister` (development version - optional)
157+
### `bulkRegister` (optional)
158158
159159
- Type `boolean`
160160

apps/docs/pages/docs/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ npm install commandkit
1010

1111
## Development version
1212

13-
CommandKit has a development version which is automatically updated with each push to the `master` branch in the [GitHub repository](https://github.com/underctrl-io/commandkit) To install the development version of CommandKit, run the following command:
13+
To install the development version of CommandKit, run the following command:
1414

1515
```sh copy
1616
npm install commandkit@dev

apps/docs/pages/enums/ReloadType.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ReloadType (development version)
1+
# ReloadType
22

33
### Developer
44

apps/docs/pages/typedef/CommandKit.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ The array of development server IDs which was set when [instantiating CommandKit
4242

4343
The array of developer role IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
4444

45-
### `reloadCommands` (development version)
45+
### `reloadCommands`
4646

4747
- Props type: `'dev'` | `'global'` | [`ReloadType`](/enums/ReloadType) (optional)
4848
- Return type: `Promise<void>`
4949

50-
Reloads application commands. Using "dev" will only reload commands marked with `devOnly`, and using "global" will do the opposite. Not passing in a property will reload both dev and global commands. The reload behaviour depends on [`bulkRegister`](/docs/commandkit-setup#bulkregister-development-version---optional).
50+
Reloads application commands. Using "dev" will only reload commands marked with `devOnly`, and using "global" will do the opposite. Not passing in a property will reload both dev and global commands. The reload behaviour depends on [`bulkRegister`](/docs/commandkit-setup#bulkregister---optional).
5151

52-
### `reloadEvents` (development version)
52+
### `reloadEvents`
5353

5454
- Return type: `Promise<void>`
5555

5656
Resets and reloads application events.
5757

58-
### `reloadValidations` (development version)
58+
### `reloadValidations`
5959

6060
- Return type: `Promise<void>`
6161

apps/docs/pages/typedef/CommandObject.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
- Type: [`CommandOptions`](/typedef/CommandOptions)
1010

11-
### `filePath` (development version)
11+
### `filePath`
1212

1313
- Type: `string`
1414

15-
### `category` (development version)
15+
### `category`
1616

1717
- Type: `string` | `null`

packages/commandkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "commandkit",
33
"description": "Beginner friendly command & event handler for Discord.js",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"license": "MIT",
66
"main": "./dist/index.js",
77
"module": "./dist/index.mjs",

0 commit comments

Comments
 (0)