Skip to content

Commit 5f25c39

Browse files
authored
chore: fix contributing file (#1430)
1 parent 200f650 commit 5f25c39

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
# discord-api-types Contributing Guide
22

3-
**The issue tracker is only for bug reports and enhancement suggestions. If you have a question, please ask it in the [Discord server](https://discord.gg/djs) instead of opening an issue, or on [GitHub Discussions](https://github.com/discordjs/discord-api-types/discussions) – you will get redirected there anyway.**
4-
53
- [Code of Conduct](https://github.com/discordjs/discord-api-types/blob/main/.github/CODE_OF_CONDUCT.md)
64
- [Pull Request Guidelines](#pull-request-guidelines)
75
- [Development Setup](#development-setup)
8-
- [Project Structure](#project-structure)
9-
- [Contributing Tests](#contributing-tests)
106

117
## Pull Request Guidelines
128

@@ -30,18 +26,18 @@
3026
3127
- Make sure tests pass!
3228
33-
- Commit messages must follow the [commit message convention](./COMMIT_CONVENTION.md) so that changelogs can be automatically generated. Commit messages are automatically validated before commit (by invoking [Git Hooks](https://git-scm.com/docs/githooks) via [husky](https://github.com/typicode/husky)).
29+
- Commit messages must follow the [commit message convention](https://github.com/discordjs/discord-api-types/blob/main/.github/COMMIT_CONVENTION.md) so that changelogs can be automatically generated. Commit messages are automatically validated before commit (by invoking [Git Hooks](https://git-scm.com/docs/githooks) via [husky](https://github.com/typicode/husky)).
3430
3531
- No need to worry about code style as long as you have installed the dev dependencies - modified files are automatically formatted with Prettier on commit (by invoking [Git Hooks](https://git-scm.com/docs/githooks) via [husky](https://github.com/typicode/husky)).
3632
3733
## Development Setup
3834
39-
You will need [Node.js](http://nodejs.org) **version 12+**, and [npm](https://www.npmjs.com/).
35+
You will need an LTS version of [Node.js](http://nodejs.org) and [Yarn](https://yarnpkg.com).
4036
4137
After cloning the repo, run:
4238
4339
```bash
44-
$ npm i # install the dependencies of the project
40+
$ yarn install # Install the dependencies of the project
4541
```
4642

4743
A high level overview of tools used:

0 commit comments

Comments
 (0)