Skip to content

Commit

Permalink
update branch references to main
Browse files Browse the repository at this point in the history
  • Loading branch information
notunderctrl committed Dec 14, 2024
1 parent c2f316b commit b492380
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to CommandKit

Firstly, thank you for considering contributing to CommandKit! Whether you're looking to fix bugs, add new features, or just ask questions, your input is valuable to us.
Firstly, thank you for considering contributing to CommandKit! Whether you're looking to fix bugs, add new features, or just ask questions, your input is valuable to us. Before actually opening a pull request, we recommend that you first open an issue (or check existing ones) to discuss the feature/bug you intend to add/fix.

## Setup

Expand Down Expand Up @@ -40,7 +40,7 @@ git checkout -b your-feature-or-bugfix

3. Ensure that your changes don't break any existing functionality. You can test the functionality of your code depending on where you've made changes:

1. If you've made changes to the CommandKit package, you can use the "tests" folder in the "packages/commandkit" directory to test your own bot. Just make sure to create a new `.env` file with the template from the `.env.example` file provided. You can run the application using `pnpm test`.
1. If you've made changes to the CommandKit package, you can use the "apps/test-bot" project to test your own bot. Just make sure to create a new `.env` file with the template from the `.env.example` file provided. This also requires you to build the commandkit package locally (after you make your changes) because it's symlinked with pnpm workspaces.
2. If you've made changes to the docs, you can run `pnpm dev` inside "apps/docs" to spin up a local development server.

4. Run `pnpm lint` from the root directory to ensure all lint scripts and formatting is valid.
Expand All @@ -57,7 +57,7 @@ git commit -m "Describe your change here"
git push origin your-feature-or-bugfix
```

7. Open a pull request in the main project repository (master branch). Describe your changes and any relevant information.
7. Open a pull request in the main project repository (main branch). Describe your changes and any relevant information.

## Submitting Issues

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/master/apps/docs/public/ckit_logo.svg" width="60%" />
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/main/apps/docs/public/ckit_logo.svg" width="60%" />
<br />
<a href="https://ctrl.lol/discord"><img src="https://img.shields.io/discord/1055188344188973066?color=5865F2&logo=discord&logoColor=white" alt="support server" /></a>
<a href="https://www.npmjs.com/package/commandkit"><img src="https://img.shields.io/npm/v/commandkit?maxAge=3600" alt="npm version" /></a>
Expand All @@ -12,11 +12,11 @@ If you are looking for support or want to provide suggestions, check out the [Di

## Links

- [Website](https://commandkit.js.org) ([source](https://github.com/underctrl-io/commandkit/tree/master/apps/docs))
- [Website](https://commandkit.js.org) ([source](https://github.com/underctrl-io/commandkit/tree/main/apps/docs))
- [Support Server](https://ctrl.lol/discord)
- [CommandKit source](https://github.com/underctrl-io/commandkit/tree/master/packages/commandkit)
- [CommandKit source](https://github.com/underctrl-io/commandkit/tree/main/packages/commandkit)
- [npm](https://www.npmjs.com/package/commandkit)

## Contributing

Check out the [contributors guide](https://github.com/underctrl-io/commandkit/blob/master/CONTRIBUTING.md)
Check out the [contributors guide](https://github.com/underctrl-io/commandkit/blob/main/CONTRIBUTING.md)
2 changes: 1 addition & 1 deletion packages/commandkit/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/master/apps/docs/public/ckit_logo.svg" width="60%" />
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/main/apps/docs/public/ckit_logo.svg" width="60%" />
<br />
<a href="https://ctrl.lol/discord"><img src="https://img.shields.io/discord/1055188344188973066?color=5865F2&logo=discord&logoColor=white" alt="support server" /></a>
<a href="https://www.npmjs.com/package/commandkit"><img src="https://img.shields.io/npm/v/commandkit?maxAge=3600" alt="npm version" /></a>
Expand Down
2 changes: 1 addition & 1 deletion packages/create-commandkit/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div align="center">
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/master/apps/docs/public/ckit_logo.svg" width="60%" />
<img src="https://raw.githubusercontent.com/underctrl-io/commandkit/main/apps/docs/public/ckit_logo.svg" width="60%" />
<br />
<a href="https://ctrl.lol/discord"><img src="https://img.shields.io/discord/1055188344188973066?color=5865F2&logo=discord&logoColor=white" alt="support server" /></a>
<a href="https://www.npmjs.com/package/create-commandkit"><img src="https://img.shields.io/npm/v/create-commandkit?maxAge=3600" alt="npm version" /></a>
Expand Down

0 comments on commit b492380

Please sign in to comment.