Skip to content

Commit

Permalink
More leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
sdanialraza committed Jun 22, 2024
1 parent 2ae809a commit db3dbf1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/COMMIT_CONVENTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Messages must be matched by the following regex:

```js
/^(revert: )?(feat|fix|docs|style|refactor|perf|test|workflow|build|ci|chore|types|wip)(\(.+\))?: .{1,72}/;
/^(revert: )?(feat|fix|docs|style|refactor|perf|test|build|ci|chore|types)(\(.+\))?: .{1,72}/;
```

#### Examples
Expand Down
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ is a great boon to your development process.
To get ready to work on the codebase, please do the following:

1. Fork & clone the repository, and make sure you're on the **main** branch
2. Run `npm clean-install` ([install](https://docs.npmjs.com/cli/v10/commands/npm-ci))
2. Run `pnpm install --frozen-lockfile` ([install](https://pnpm.io/installation))
3. Code your heart out!
4. Run `npm run format && npm run lint` to make sure your changes follow our coding style
4. Run `pnpm run format && pnpm run lint` to make sure your changes follow our coding style
5. [Submit a pull request](https://github.com/discordjs/voice-examples/compare) (Make sure you follow the [conventional commit format](https://github.com/discordjs/voice-examples/blob/main/.github/COMMIT_CONVENTION.md))
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body:
- type: input
id: djs-voice-version
attributes:
label: "@discordjs/version version"
label: '@discordjs/version version'
description: Which version of @discordjs/voice are you using? Run `npm list <package>` in your project directory and paste the output.
validations:
required: true
Expand All @@ -57,7 +57,7 @@ body:
description: |
Which version of Node.js are you using? Run `node --version` in your project directory and paste the output.
If you are using TypeScript, please include its version (`npm list typescript`) as well.
placeholder: Node.js version 16.9+ is required for version 14.0.0+
placeholder: Node.js version 18+ is required
validations:
required: true
- type: input
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Install node.js v20
- name: Install Node.js v20
uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A list of ready-to-run examples for `@discordjs/voice`.

## How to try them out

All you have to do is copy the example directory of your choosing, install the dependencies, fill in the `config.json` file, and run `npm run start`.
All you have to do is copy the example directory of your choosing, install the dependencies, fill in the `.env` file, and run `npm run start`.

## Links

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"Amish Shah <[email protected]>",
"Vlad Frangu <[email protected]>",
"SpaceEEC <[email protected]>",
"Antonio Roman <[email protected]>"
"Aura Román <[email protected]>"
],
"keywords": [
"discord",
Expand Down

0 comments on commit db3dbf1

Please sign in to comment.