Skip to content

Commit 263c660

Browse files
committed
add dev version to installation
1 parent 666dfa9 commit 263c660

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

apps/nextra-docs/pages/docs/handler-properties.mdx

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,40 @@ When a CommandKit class has been instantiated, it's easier to refer to the resul
66

77
- Type: `CommandObject[]`
88

9-
### `commandsPath`
9+
An array of all the command objects that CommandKit is handling. This includes all the properties and methods that are also set outside of CommandKit's configuration. It does however not include the `run` method since CommandKit handles that internally.
10+
11+
### `commandsPath` (development version)
1012

1113
- Type: `string | undefined`
1214

13-
### `eventsPath`
15+
The path to the commands directory which was set when [instantiating CommandKit](/docs/commandkit-setup).
16+
17+
### `eventsPath` (development version)
1418

1519
- Type: `string | undefined`
1620

17-
### `validationsPath`
21+
The path to the events directory which was set when [instantiating CommandKit](/docs/commandkit-setup).
22+
23+
### `validationsPath` (development version)
1824

1925
- Type: `string | undefined`
2026

21-
### `devUserIds`
27+
The path to the validations directory which was set when [instantiating CommandKit](/docs/commandkit-setup).
28+
29+
### `devUserIds` (development version)
2230

2331
- Type: `string[]`
2432

25-
### `devGuildIds`
33+
The array of developer user IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
34+
35+
### `devGuildIds` (development version)
2636

2737
- Type: `string[]`
2838

29-
### `devRoleIds`
39+
The array of development server IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
40+
41+
### `devRoleIds` (development version)
3042

3143
- Type: `string[]`
44+
45+
The array of developer role IDs which was set when [instantiating CommandKit](/docs/commandkit-setup).
Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1-
import { Callout, Card, Cards, Steps } from 'nextra/components';
1+
import { Callout } from 'nextra/components';
22

33
# Installation
44

5-
Based on your preferred package manager, run one of the commands in your terminal:
5+
To install CommandKit, run one of the following commands based on your preferred package manager:
66

77
```sh npm2yarn copy
88
npm install commandkit
99
```
10+
11+
## Development version
12+
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:
14+
15+
```sh copy
16+
npm install underctrl-io/commandkit#dev-build
17+
```
18+
19+
<Callout type="warning">The development version is likely to have bugs.</Callout>

0 commit comments

Comments
 (0)