commandkit 0.1.11-dev.20250330132632 → 0.1.11-dev.20250330132756
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 +4 -24
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,35 +30,15 @@ You can find the full documentation [here](https://commandkit.dev).
|
|
|
30
30
|
|
|
31
31
|
[](https://nodei.co/npm/commandkit/)
|
|
32
32
|
|
|
33
|
-
To
|
|
33
|
+
To create a new CommandKit project, you can use the following command:
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
<!-- TODO: use stable version -->
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
npm
|
|
38
|
+
npm create commandkit@dev
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
```bash
|
|
44
|
-
yarn add commandkit
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
pnpm:
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
pnpm add commandkit
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
### Install development version
|
|
54
|
-
|
|
55
|
-
To install the development version of CommandKit, run the following command:
|
|
56
|
-
|
|
57
|
-
```bash
|
|
58
|
-
npm install commandkit@dev
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
> ⚠️ The development version is likely to have bugs.
|
|
41
|
+
This will prompt you to enter few details about your project. Once you have entered the details, you can simply run `commandkit dev` to start the bot application.
|
|
62
42
|
|
|
63
43
|
## Getting Started
|
|
64
44
|
|