chore: Add brokers to package list and labels in issue forms (#8893)

chore: add brokers and sort list

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Jiralite 2022-12-01 10:00:04 +00:00 committed by GitHub
parent fff3602a8a
commit 5e4331062b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -16,9 +16,9 @@ body:
- builders
- collection
- core
- rest
- proxy
- proxy-container
- rest
- voice
- ws
validations:

View file

@ -14,12 +14,13 @@ body:
label: Which package is the feature request for?
options:
- discord.js
- brokers
- builders
- collection
- core
- rest
- proxy
- proxy-container
- rest
- voice
- ws
validations:

View file

@ -28,7 +28,7 @@ export interface MemberJSON {
summary: string | null;
}
export const PACKAGES = ['builders', 'collection', 'core', 'proxy', 'rest', 'util', 'voice', 'ws'];
export const PACKAGES = ['brokers', 'builders', 'collection', 'core', 'proxy', 'rest', 'util', 'voice', 'ws'];
let idx = 0;
export function createApiModel(data: any) {