chore: deps

This commit is contained in:
iCrawl
2022-07-17 19:20:40 +02:00
parent 3bf30b1e6d
commit caecc574f0
14 changed files with 928 additions and 1726 deletions

View File

@@ -42,13 +42,13 @@
"@commitlint/config-angular": "^17.0.3",
"@favware/cliff-jumper": "^1.8.5",
"@favware/npm-deprecate": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-import-resolver-typescript": "^3.2.7",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",

View File

@@ -48,13 +48,13 @@
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/node": "^16.11.45",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.17.0"
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

View File

@@ -54,7 +54,7 @@
"homepage": "https://discord.js.org",
"dependencies": {
"@sapphire/shapeshift": "^3.5.1",
"discord-api-types": "^0.36.1",
"discord-api-types": "^0.36.2",
"fast-deep-equal": "^3.1.3",
"ts-mixer": "^6.0.1",
"tslib": "^2.4.0"
@@ -63,14 +63,14 @@
"@discordjs/docgen": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^1.8.5",
"@microsoft/api-extractor": "^7.28.3",
"@types/node": "^18.0.3",
"@microsoft/api-extractor": "^7.28.4",
"@types/node": "^16.11.45",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.17.0"
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

View File

@@ -52,14 +52,14 @@
"@discordjs/docgen": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^1.8.5",
"@microsoft/api-extractor": "^7.28.3",
"@types/node": "^18.0.3",
"@microsoft/api-extractor": "^7.28.4",
"@types/node": "^16.11.45",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.17.0"
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

View File

@@ -53,20 +53,20 @@
"@discordjs/rest": "workspace:^",
"@sapphire/snowflake": "^3.2.2",
"@types/ws": "^8.5.3",
"discord-api-types": "^0.36.1",
"discord-api-types": "^0.36.2",
"fast-deep-equal": "^3.1.3",
"lodash.snakecase": "^4.1.1",
"tslib": "^2.4.0",
"undici": "^5.6.0",
"ws": "^8.8.0"
"undici": "^5.7.0",
"ws": "^8.8.1"
},
"devDependencies": {
"@discordjs/docgen": "workspace:^",
"@favware/cliff-jumper": "^1.8.5",
"@types/node": "^18.0.3",
"@types/node": "^16.11.45",
"dtslint": "^4.2.1",
"eslint": "^8.19.0",
"jest": "^28.1.2",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"tsd": "^0.22.0",
"tslint": "^6.1.3",

View File

@@ -139,7 +139,9 @@ class PermissionOverwriteManager extends CachedManager {
* .catch(console.error);
*/
edit(userOrRole, options, overwriteOptions) {
const existing = this.cache.get(this.channel.guild.roles.resolveId(userOrRole) ?? this.client.users.resolveId(userOrRole));
const existing = this.cache.get(
this.channel.guild.roles.resolveId(userOrRole) ?? this.client.users.resolveId(userOrRole),
);
return this.upsert(userOrRole, options, overwriteOptions, existing);
}

View File

@@ -50,16 +50,16 @@
"homepage": "https://discord.js.org",
"dependencies": {
"@discordjs/collection": "^0.7.0",
"commander": "^9.3.0",
"commander": "^9.4.0",
"jsdoc-to-markdown": "^7.1.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.5"
"typedoc": "^0.23.7"
},
"devDependencies": {
"@favware/cliff-jumper": "^1.8.5",
"@types/jsdoc-to-markdown": "^7.0.3",
"@types/node": "^18.0.3",
"eslint": "^8.19.0",
"@types/node": "^16.11.45",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4"

View File

@@ -48,8 +48,8 @@
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"eslint": "^8.19.0",
"@types/node": "^16.11.45",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4"

View File

@@ -55,22 +55,22 @@
"dependencies": {
"@discordjs/rest": "^0.5.0",
"tslib": "^2.4.0",
"undici": "^5.6.0"
"undici": "^5.7.0"
},
"devDependencies": {
"@discordjs/docgen": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^1.8.5",
"@microsoft/api-extractor": "^7.28.3",
"@types/node": "^18.0.3",
"@microsoft/api-extractor": "^7.28.4",
"@types/node": "^16.11.45",
"@types/supertest": "^2.0.12",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.17.0"
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

View File

@@ -54,22 +54,23 @@
"@discordjs/collection": "workspace:^",
"@sapphire/async-queue": "^1.3.2",
"@sapphire/snowflake": "^3.2.2",
"discord-api-types": "^0.36.1",
"discord-api-types": "^0.36.2",
"file-type": "^17.1.2",
"tslib": "^2.4.0",
"undici": "^5.6.0"
"undici": "^5.7.0"
},
"devDependencies": {
"@discordjs/docgen": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^1.8.5",
"@microsoft/api-extractor": "^7.28.3",
"@microsoft/api-extractor": "^7.28.4",
"@types/node": "^16.11.45",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.17.0"
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

View File

@@ -43,17 +43,17 @@
},
"homepage": "https://discord.js.org",
"dependencies": {
"commander": "^9.3.0",
"commander": "^9.4.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/node": "^16.11.45",
"c8": "^7.11.3",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.17.0"
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

View File

@@ -52,10 +52,10 @@
"homepage": "https://discord.js.org",
"dependencies": {
"@types/ws": "^8.5.3",
"discord-api-types": "^0.36.1",
"prism-media": "^1.3.2",
"discord-api-types": "^0.36.2",
"prism-media": "^1.3.4",
"tslib": "^2.4.0",
"ws": "^8.8.0"
"ws": "^8.8.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
@@ -64,10 +64,11 @@
"@discordjs/docgen": "workspace:^",
"@discordjs/scripts": "workspace:^",
"@favware/cliff-jumper": "^1.8.5",
"@microsoft/api-extractor": "^7.28.3",
"@types/jest": "^28.1.4",
"eslint": "^8.19.0",
"jest": "^28.1.2",
"@microsoft/api-extractor": "^7.28.4",
"@types/jest": "^28.1.6",
"@types/node": "^16.11.45",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"jest-websocket-mock": "^2.3.0",
"mock-socket": "^9.1.5",
"prettier": "^2.7.1",

View File

@@ -49,49 +49,49 @@
"dependencies": {
"@microsoft/api-extractor-model": "^7.21.0",
"@microsoft/tsdoc": "^0.14.1",
"@remix-run/node": "^1.6.3",
"@remix-run/react": "^1.6.3",
"@remix-run/serve": "^1.6.3",
"@remix-run/server-runtime": "^1.6.3",
"@remix-run/vercel": "^1.6.3",
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/serve": "^1.6.5",
"@remix-run/server-runtime": "^1.6.5",
"@remix-run/vercel": "^1.6.5",
"@vscode/codicons": "^0.0.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-syntax-highlighter": "^15.5.0",
"remix": "^1.6.3"
"remix": "^1.6.5"
},
"devDependencies": {
"@remix-run/dev": "^1.6.3",
"@remix-run/dev": "^1.6.5",
"@testing-library/cypress": "^8.0.3",
"@testing-library/dom": "^8.14.0",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/node": "^16.11.43",
"@testing-library/user-event": "^14.2.5",
"@types/node": "^16.11.45",
"@types/react-dom": "^18.0.6",
"@types/react-syntax-highlighter": "^15.5.2",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@unocss/cli": "^0.43.2",
"@unocss/reset": "^0.43.2",
"@vitejs/plugin-react": "^1.3.2",
"@types/react-syntax-highlighter": "^15.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@unocss/cli": "^0.44.3",
"@unocss/reset": "^0.44.3",
"@vitejs/plugin-react": "^2.0.0",
"c8": "^7.11.3",
"concurrently": "^7.2.2",
"cypress": "^10.3.0",
"eslint": "^8.19.0",
"eslint": "^8.20.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.4",
"eslint-import-resolver-typescript": "^3.2.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^6.0.2",
"msw": "^0.43.0",
"happy-dom": "^6.0.3",
"msw": "^0.44.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"unocss": "^0.43.2",
"vitest": "^0.17.0"
"unocss": "^0.44.3",
"vitest": "^0.18.1"
},
"engines": {
"node": ">=16.9.0"

2506
yarn.lock

File diff suppressed because it is too large Load Diff