chore: fix create-discord-bot -> create-discord-app formatting (#10951)

* chore: fix create-discord-bot -> create-discord-app formatting

* chore: readme for bun

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Vlad Frangu
2025-06-23 01:37:55 +03:00
committed by GitHub
parent 9680f42ba3
commit cd76c9a47b
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ It's easy to create a simple Discord bot to begin your journey with the Discord
npm create discord-bot ./your/chosen/directory
yarn create discord-bot ./your/chosen/directory
pnpm create discord-bot ./your/chosen/directory
bunx create-discord-bot ./your/chosen/directory
bun create discord-bot ./your/chosen/directory
```
## Links

View File

@@ -6,7 +6,7 @@ const pkgJson = JSON.parse(await readFile(pkgJsonPath, 'utf8'));
pkgJson.name = 'create-discord-app';
await writeFile(pkgJsonPath, JSON.stringify(pkgJson, null, '\t'));
await writeFile(pkgJsonPath, JSON.stringify(pkgJson, null, '\t') + '\n');
const readmePath = new URL('../README.md', import.meta.url);
const readme = await readFile(readmePath, 'utf8');