Skip to content

Commit cfa9e81

Browse files
authored
Merge branch 'master' into unmerged-guild-template
2 parents ecc36df + b8fd3f6 commit cfa9e81

39 files changed

+911
-746
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ is a great boon to your development process.
1111
To get ready to work on the codebase, please do the following:
1212

1313
1. Fork & clone the repository, and make sure you're on the **master** branch
14-
2. Run `npm install`
14+
2. Run `npm ci`
1515
3. If you're working on voice, also run `npm install @discordjs/opus` or `npm install opusscript`
1616
4. Code your heart out!
1717
5. Run `npm test` to run ESLint and ensure any JSDoc changes are valid

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
node-version: 12
2222

2323
- name: Install dependencies
24-
run: npm install
24+
run: npm ci
2525

2626
- name: Build and deploy documentation
2727
uses: discordjs/action-docs@v1
@@ -41,7 +41,7 @@ jobs:
4141
node-version: 12
4242

4343
- name: Install dependencies
44-
run: npm install
44+
run: npm ci
4545

4646
- name: Build and deploy webpack
4747
uses: discordjs/action-webpack@v1

.github/workflows/test-cron.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: 12
1717

1818
- name: Install dependencies
19-
run: npm install
19+
run: npm ci
2020

2121
- name: Run ESLint
2222
uses: icrawl/action-eslint@v1
@@ -34,7 +34,7 @@ jobs:
3434
node-version: 12
3535

3636
- name: Install dependencies
37-
run: npm install
37+
run: npm ci
3838

3939
- name: Run TSLint
4040
run: npm run lint:typings
@@ -52,7 +52,7 @@ jobs:
5252
node-version: 12
5353

5454
- name: Install dependencies
55-
run: npm install
55+
run: npm ci
5656

5757
- name: Register Problem Matcher
5858
run: echo "##[add-matcher].github/tsc.json"
@@ -73,7 +73,7 @@ jobs:
7373
node-version: 12
7474

7575
- name: Install dependencies
76-
run: npm install
76+
run: npm ci
7777

7878
- name: Test documentation
7979
run: npm run docs:test

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: 12
1515

1616
- name: Install dependencies
17-
run: npm install
17+
run: npm ci
1818

1919
- name: Run ESLint
2020
uses: icrawl/action-eslint@v1
@@ -32,7 +32,7 @@ jobs:
3232
node-version: 12
3333

3434
- name: Install dependencies
35-
run: npm install
35+
run: npm ci
3636

3737
- name: Run TSLint
3838
run: npm run lint:typings
@@ -50,7 +50,7 @@ jobs:
5050
node-version: 12
5151

5252
- name: Install dependencies
53-
run: npm install
53+
run: npm ci
5454

5555
- name: Register Problem Matcher
5656
run: echo "##[add-matcher].github/tsc.json"
@@ -71,7 +71,7 @@ jobs:
7171
node-version: 12
7272

7373
- name: Install dependencies
74-
run: npm install
74+
run: npm ci
7575

7676
- name: Test documentation
7777
run: npm run docs:test

esm/discord.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export const {
2525
SnowflakeUtil,
2626
Structures,
2727
SystemChannelFlags,
28+
UserFlags,
2829
Util,
2930
version,
3031
ChannelManager,
@@ -34,6 +35,7 @@ export const {
3435
GuildMemberManager,
3536
GuildMemberRoleManager,
3637
GuildManager,
38+
ReactionManager,
3739
ReactionUserManager,
3840
MessageManager,
3941
PresenceManager,
@@ -45,9 +47,11 @@ export const {
4547
resolveColor,
4648
resolveString,
4749
splitMessage,
50+
Application,
4851
Base,
4952
Activity,
5053
APIMessage,
54+
BaseGuildEmoji,
5155
CategoryChannel,
5256
Channel,
5357
ClientApplication,

0 commit comments

Comments
 (0)