Skip to content

Commit

Permalink
Merge pull request #206 from sawa-ko/renovate/all-minor-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
sawa-ko authored Feb 16, 2024
2 parents ea91946 + 8ade7eb commit 531d245
Show file tree
Hide file tree
Showing 7 changed files with 1,394 additions and 1,607 deletions.
672 changes: 336 additions & 336 deletions .yarn/releases/yarn-4.0.2.cjs → .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ enableGlobalCache: true

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
yarnPath: .yarn/releases/yarn-4.1.0.cjs
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,44 +26,44 @@
"dependencies": {
"@discordjs/collection": "^2.0.0",
"@favware/rollup-type-bundler": "^3.3.0",
"@sapphire/lexure": "^1.1.6",
"@sapphire/lexure": "^1.1.7",
"@sapphire/pieces": "^4.2.2",
"@sapphire/ratelimits": "^2.4.8",
"@sapphire/result": "2.6.5",
"@sapphire/utilities": "^3.14.0",
"@sapphire/ratelimits": "^2.4.9",
"@sapphire/result": "2.6.6",
"@sapphire/utilities": "^3.15.3",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"chokidar": "^3.6.0",
"tslib": "^2.6.2",
"tslog": "^4.9.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-prettier": "^5.1.3",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"pretty-quick": "^3.1.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"pretty-quick": "^3.3.1",
"revolt.js": "6.0.20",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.4",
"typedoc-plugin-mdn-links": "^3.1.7",
"typedoc": "^0.25.8",
"typedoc-plugin-mdn-links": "^3.1.16",
"typescript": "^5.3.3"
},
"repository": {
Expand Down Expand Up @@ -111,5 +111,5 @@
"jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.0.2"
"packageManager": "yarn@4.1.0"
}
2 changes: 1 addition & 1 deletion src/lib/structures/stores/precondition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class PreconditionStore extends Store<Precondition> {
: await precondition.error({
identifier: Identifiers.PreconditionMissingRunHandler,
message: `The precondition "${precondition.name}" is missing a "messageRun" handler, but it was requested for the "${command.name}" command.`
});
});

if (result.isErr()) {
return result;
Expand Down
2 changes: 1 addition & 1 deletion src/preconditions/client-permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export class CorePrecondition extends Precondition {
context: { missing: missingPermissions },
identifier: Identifiers.PreconditionClientPermissions,
message: errorMessage.join('\n')
});
});
}
}
2 changes: 1 addition & 1 deletion src/preconditions/user-permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export class CorePrecondition extends Precondition {
context: { missing: missingPermissions },
identifier: Identifiers.PreconditionClientPermissions,
message: errorMessage.join('\n')
});
});
}
}
Loading

0 comments on commit 531d245

Please sign in to comment.