Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(app): update all non-major dependencies #143

Merged
merged 3 commits into from Jan 9, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/app/package.json
Expand Up @@ -34,7 +34,7 @@
"@mantine/prism": "5.10.0",
"@mantine/spotlight": "5.10.0",
"@mantine/tiptap": "5.10.0",
"@tanstack/react-query": "4.20.9",
"@tanstack/react-query": "4.21.0",
"@tiptap/extension-link": "2.0.0-beta.209",
"@tiptap/react": "2.0.0-beta.209",
"@tiptap/starter-kit": "2.0.0-beta.209",
Expand All @@ -52,11 +52,11 @@
"feather-icons-react": "0.6.2",
"i18next": "22.4.8",
"next": "13.1.1",
"next-auth": "4.18.7",
"next-auth": "4.18.8",
"next-i18next": "13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "12.1.1",
"react-i18next": "12.1.4",
"zod": "3.20.2"
},
"devDependencies": {
Expand All @@ -70,7 +70,7 @@
"@typescript-eslint/parser": "5.48.0",
"@weareinreach/config": "0.100.0",
"@weareinreach/eslint-config": "0.100.0",
"commander": "9.4.1",
"commander": "9.5.0",
"dotenv": "16.0.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Expand Up @@ -39,7 +39,7 @@
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "12.1.1"
"react-i18next": "12.1.4"
},
"devDependencies": {
"@next/bundle-analyzer": "13.1.1",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -50,7 +50,7 @@
"eslint-plugin-turbo": "0.0.7",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"prettier": "2.8.2",
"prettier-plugin-jsdoc": "0.4.2",
"prettier-plugin-packagejson": "2.3.0",
"prettier-plugin-prisma": "4.8.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/package.json
Expand Up @@ -16,7 +16,7 @@
"@next-auth/prisma-adapter": "1.0.5",
"@weareinreach/db": "0.100.0",
"next": "13.1.1",
"next-auth": "4.18.7",
"next-auth": "4.18.8",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/aws-user-migrate/package.json
Expand Up @@ -20,7 +20,7 @@
},
"dependencies": {
"@weareinreach/db": "0.100.0",
"aws-sdk": "2.1289.0"
"aws-sdk": "2.1290.0"
},
"devDependencies": {
"@types/aws-lambda": "8.10.109",
Expand All @@ -30,7 +30,7 @@
"@weareinreach/eslint-config": "0.100.0",
"aws-lambda": "1.0.7",
"eslint": "8.31.0",
"prettier": "2.8.1",
"prettier": "2.8.2",
"typescript": "4.9.4"
}
}
6 changes: 3 additions & 3 deletions packages/db/package.json
Expand Up @@ -55,7 +55,7 @@
"@weareinreach/eslint-config": "0.100.0",
"@zerodep/geo.stateiso": "0.1.4",
"axios": "1.2.2",
"commander": "9.4.1",
"commander": "9.5.0",
"countries-languages": "1.0.3",
"cuid": "2.1.8",
"dotenv": "16.0.3",
Expand All @@ -72,14 +72,14 @@
"iso-3166-2": "1.0.0",
"iso-google-locales": "3.0.4",
"langs": "2.0.0",
"libphonenumber-js": "1.10.16",
"libphonenumber-js": "1.10.17",
"listr2": "5.0.6",
"luxon": "3.2.1",
"mongoback": "3.0.3",
"prisma": "4.8.1",
"prisma-dbml-generator": "0.10.0",
"prisma-docs-generator": "0.5.0",
"quicktype-core": "7.0.3",
"quicktype-core": "7.0.31",
"recursive-readdir": "2.2.3",
"shoetest": "1.2.1",
"slugify": "1.6.5",
Expand Down
10 changes: 6 additions & 4 deletions packages/db/seed/migrate-v1/org/zod.ts
Expand Up @@ -128,7 +128,7 @@ export const zodBaseSchema = {
} as const
export type ZodBaseSchema = {
[K in keyof typeof zodBaseSchema]: K extends keyof typeof zodBaseSchema
? z.infer<typeof zodBaseSchema[K]>
? z.infer<(typeof zodBaseSchema)[K]>
: never
}

Expand Down Expand Up @@ -165,9 +165,9 @@ export const zodInput = {
organizationPermission: OrganizationPermissionCreateManyInputSchema,
} as const
export type ZodInputs = {
-readonly [P in BatchNames]: P extends BatchNames ? z.infer<typeof zodInput[P]>[] : never
-readonly [P in BatchNames]: P extends BatchNames ? z.infer<(typeof zodInput)[P]>[] : never
}
export type ZodInput<K extends BatchNames> = K extends BatchNames ? z.infer<typeof zodInput[K]> : never
export type ZodInput<K extends BatchNames> = K extends BatchNames ? z.infer<(typeof zodInput)[K]> : never
export const zodFindMany = {
translationKey: TranslationKeyFindManyArgsSchema,
freeText: FreeTextFindManyArgsSchema,
Expand Down Expand Up @@ -201,5 +201,7 @@ export const zodFindMany = {
organizationPermission: OrganizationPermissionFindManyArgsSchema,
} as const
export type ZodFindMany = {
[K in keyof typeof zodFindMany]: K extends keyof typeof zodFindMany ? z.infer<typeof zodFindMany[K]> : never
[K in keyof typeof zodFindMany]: K extends keyof typeof zodFindMany
? z.infer<(typeof zodFindMany)[K]>
: never
}
2 changes: 1 addition & 1 deletion packages/db/seed/starter/12-geodata.ts
Expand Up @@ -30,7 +30,7 @@ const districtTypes = [
{ one: 'city', other: 'cities' },
] as const

type DistrictTypes = typeof districtTypes[number]['one']
type DistrictTypes = (typeof districtTypes)[number]['one']
const govDist = new Map<DistrictTypes, string>()
const countryMap = new Map<string, string>()

Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Expand Up @@ -82,13 +82,13 @@
"i18next-http-backend": "2.1.1",
"merge-anything": "5.1.4",
"next": "13.1.1",
"next-auth": "4.18.7",
"next-auth": "4.18.8",
"next-i18next": "13.0.3",
"postcss-loader": "7.0.2",
"react": "18.2.0",
"react-docgen-typescript": "2.2.2",
"react-dom": "18.2.0",
"react-i18next": "12.1.1",
"react-i18next": "12.1.4",
"resolve-url-loader": "5.0.0",
"sb": "6.5.15",
"slugify": "1.6.5",
Expand Down