Update dependencies

Signed-off-by: Reece Dunham <me@rdil.rocks>
This commit is contained in:
Reece Dunham 2023-10-14 20:37:50 -04:00
parent 9f3d243377
commit 16a0a0bf59
No known key found for this signature in database
GPG Key ID: F087CB485320F19F
8 changed files with 2084 additions and 1996 deletions

881
.yarn/releases/yarn-4.0.0-rc.48.cjs generated vendored

File diff suppressed because one or more lines are too long

893
.yarn/releases/yarn-4.0.0-rc.53.cjs generated vendored Executable file

File diff suppressed because one or more lines are too long

View File

@ -14,4 +14,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://mskelton.dev/yarn-outdated/v2"
yarnPath: .yarn/releases/yarn-4.0.0-rc.48.cjs
yarnPath: .yarn/releases/yarn-4.0.0-rc.53.cjs

View File

@ -62,7 +62,7 @@ export class MasteryService {
* @Value A `MasteryPackage` object.
*/
private unlockableMasteryData: Map<
string,
GameVersion,
Map<string, UnlockableMasteryData>
> = new Map([
["h1", new Map()],
@ -182,7 +182,7 @@ export class MasteryService {
* @param locationParentId The location's parent ID, used for progression storage @since v7.0.0
* @param maxLevel The max level for this progression.
* @param levelToXpRequired A function to get the XP required for a level.
* @param subPackageId? The subpackage id you want.
* @param subPackageId The subpackage id you want.
*/
private getCompletionData(
userId: string,
@ -237,7 +237,7 @@ export class MasteryService {
* @param gameVersion The game version.
* @param userId The id of the user.
* @param contractType The type of the contract, only used to distinguish evergreen from other types (default).
* @param subPackageId? The id of the subpackage you want.
* @param subPackageId The id of the subpackage you want.
* @returns The CompletionData object.
*/
getLocationCompletion(

View File

@ -37,23 +37,23 @@
},
"dependencies": {
"@peacockproject/statemachine-parser": "^5.9.3",
"@yarnpkg/fslib": "^3.0.0-rc.48",
"@yarnpkg/libzip": "^3.0.0-rc.48",
"atomically": "^2.0.1",
"axios": "^1.4.0",
"@yarnpkg/fslib": "^3.0.0-rc.53",
"@yarnpkg/libzip": "^3.0.0-rc.53",
"atomically": "^2.0.2",
"axios": "^1.5.1",
"body-parser": "*",
"clipanion": "^3.2.1",
"commander": "^11.0.0",
"commander": "^11.1.0",
"deepmerge-ts": "^5.1.0",
"esbuild-wasm": "^0.18.11",
"esbuild-wasm": "^0.19.4",
"express": "patch:express@npm%3A4.18.2#~/.yarn/patches/express-npm-4.18.2-bb15ff679a.patch",
"jest-diff": "^29.6.1",
"jest-diff": "^29.7.0",
"js-ini": "^1.6.0",
"json5": "^2.2.3",
"jsonwebtoken": "^9.0.1",
"jsonwebtoken": "^9.0.2",
"md5-file": "^5.0.0",
"msgpackr": "^1.9.5",
"nanoid": "^4.0.2",
"msgpackr": "^1.9.9",
"nanoid": "^5.0.1",
"parseurl": "^1.3.3",
"picocolors": "patch:picocolors@npm%3A1.0.0#~/.yarn/patches/picocolors-npm-1.0.0-d81e0b1927.patch",
"progress": "^2.0.3",
@ -65,33 +65,33 @@
"devDependencies": {
"@mixer/parallel-prettier": "^2.0.3",
"@peacockproject/eslint-plugin": "workspace:*",
"@types/body-parser": "1.19.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/body-parser": "1.19.3",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20",
"@types/parseurl": "^1.3.1",
"@types/progress": "^2.0.5",
"@types/prompts": "^2.4.4",
"@types/send": "^0.17.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/ui": "^0.33.0",
"esbuild": "^0.18.11",
"esbuild-register": "^3.4.2",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"@types/prompts": "^2.4.6",
"@types/send": "^0.17.2",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/ui": "^0.34.6",
"esbuild": "^0.19.4",
"esbuild-register": "^3.5.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-glob": "^3.3.0",
"fast-glob": "^3.3.1",
"json-keys-sort": "^2.1.0",
"ms": "^2.1.3",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"terser": "^5.18.2",
"typescript": "5.1.6",
"vitest": "^0.33.0",
"winston": "^3.9.0",
"rimraf": "^5.0.5",
"terser": "^5.21.0",
"typescript": "5.2.2",
"vitest": "^0.34.6",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"engines": {
@ -102,5 +102,5 @@
"packaging/typedefs",
"packaging/eslint"
],
"packageManager": "yarn@4.0.0-rc.48"
"packageManager": "yarn@4.0.0-rc.53"
}

View File

@ -22,13 +22,13 @@
},
"dependencies": {
"@peacockproject/statemachine-parser": "^5.9.3",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"atomically": "^2.0.1",
"axios": "^1.3.5",
"@types/express": "^4.17.19",
"@types/node": "^20.8.6",
"atomically": "^2.0.2",
"axios": "^1.5.1",
"js-ini": "^1.6.0"
},
"optionalDependencies": {
"msgpackr": "^1.9.5"
"msgpackr": "^1.9.9"
}
}

View File

@ -3,9 +3,9 @@
"version": "1.0.0",
"private": true,
"dependencies": {
"axios": "^1.4.0",
"clsx": "^1.2.1",
"immer": "^10.0.2",
"axios": "^1.5.1",
"clsx": "^2.0.0",
"immer": "^10.0.3",
"infima": "0.2.0-alpha.38",
"json-keys-sort": "^2.1.0",
"react": "^18.2.0",
@ -20,12 +20,12 @@
"typecheck-ws": "tsc"
},
"devDependencies": {
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/url-parse": "^1.4.8",
"rollup-plugin-license": "^3.0.1",
"typescript": "5.1.3",
"vite": "^4.3.9"
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/url-parse": "^1.4.9",
"rollup-plugin-license": "^3.1.0",
"typescript": "5.2.2",
"vite": "^4.4.11"
},
"peerDependencies": {
"rollup": "*"

2212
yarn.lock

File diff suppressed because it is too large Load Diff