Skip to content

Commit

Permalink
perf: Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
aXenDeveloper committed Jun 17, 2024
1 parent ea1f0f2 commit bb347e2
Show file tree
Hide file tree
Showing 11 changed files with 746 additions and 574 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache libc6-compat
RUN apk update
# Set working directory
WORKDIR /app
RUN npm i -g turbo@~2.0.3
RUN npm i -g turbo@~2.0.4
COPY . .
RUN turbo telemetry disable
RUN turbo prune backend --docker
Expand Down
4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@react-email/render": "^0.0.15",
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"graphql": "^16.8.1",
"graphql": "^16.8.2",
"nodemailer": "^6.9.13",
"react": "^18.3.1",
"reflect-metadata": "^0.2.2",
Expand All @@ -50,7 +50,7 @@
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.28",
"@swc/core": "^1.6.1",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache libc6-compat
RUN apk update
# Set working directory
WORKDIR /app
RUN npm i -g turbo@~2.0.3
RUN npm i -g turbo@~2.0.4
COPY . .
RUN turbo telemetry disable
RUN turbo prune frontend --docker
Expand Down
1 change: 0 additions & 1 deletion frontend/graphql/get-session-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export const getSessionData = async () => {

return {
data,
theme_id: data.core_settings__show.theme_id ?? 1,
default_plugin: data.core_sessions__authorization.plugin_default
};
};
14 changes: 7 additions & 7 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@
"cmdk": "^1.0.0",
"cropperjs": "^1.6.2",
"date-fns": "^3.6.0",
"embla-carousel-react": "^8.1.4",
"embla-carousel-react": "^8.1.5",
"emoji-mart": "^5.6.0",
"framer-motion": "^11.2.10",
"graphql": "^16.8.1",
"graphql": "^16.8.2",
"graphql-tag": "^2.12.6",
"html-react-parser": "^5.1.10",
"lodash": "^4.17.21",
"lowlight": "^3.1.0",
"lucide-react": "^0.394.0",
"next": "15.0.0-canary.28",
"lucide-react": "^0.395.0",
"next": "15.0.0-canary.35",
"next-intl": "^3.15.0",
"next-themes": "^0.3.0",
"nextjs-toploader": "^1.6.12",
Expand All @@ -70,7 +70,7 @@
"react-cropper": "^2.3.3",
"react-day-picker": "^8.10.1",
"react-dom": "19.0.0-rc.0",
"react-hook-form": "^7.51.5",
"react-hook-form": "^7.52.0",
"react-resizable-panels": "^2.0.19",
"react-use": "^17.5.0",
"react-virtuoso": "^4.7.11",
Expand All @@ -90,14 +90,14 @@
"@emoji-mart/data": "^1.2.1",
"@hookform/devtools": "^4.3.1",
"@hookform/resolvers": "^3.6.0",
"@next/bundle-analyzer": "15.0.0-canary.28",
"@next/bundle-analyzer": "15.0.0-canary.35",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-toolbar": "^1.0.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/eslint-plugin-query": "^5.43.1",
"@tanstack/react-query": "^5.44.0",
"@tanstack/react-query": "^5.45.1",
"@tanstack/react-table": "^8.17.3",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import { CardContent, CardDescription, CardHeader } from "@/components/ui/card";
import { Core_Sessions__Devices__ShowQuery } from "@/graphql/hooks";
import { ContentDevicesSettings } from "./content";

interface Props extends Core_Sessions__Devices__ShowQuery {
export interface DevicesSettingsViewProps
extends Core_Sessions__Devices__ShowQuery {
loginToken: string;
}

export const DevicesSettingsView = (props: Props) => {
export const DevicesSettingsView = (props: DevicesSettingsViewProps) => {
const t = useTranslations("core.settings.devices");

return (
Expand Down
1 change: 0 additions & 1 deletion frontend/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const config = {
content: [
"./components/**/*.{ts,tsx}",
"./app/**/*.{ts,tsx}",
"./themes/**/*.{ts,tsx}",
"./plugins/**/*.{ts,tsx}"
],
prefix: "",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"devDependencies": {
"cross-env": "^7.0.3",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.3",
"turbo": "~2.0.3"
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "~2.0.4"
},
"packageManager": "pnpm@9.3.0"
}
4 changes: 2 additions & 2 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"class-validator": "^0.14.1",
"drizzle-orm": "^0.31.2",
"express": "^4.19.2",
"graphql": "^16.8.1",
"ua-parser-js": "^2.0.0-beta.3"
"graphql": "^16.8.2",
"ua-parser-js": "2.0.0-beta.3"
}
}
4 changes: 2 additions & 2 deletions packages/eslint-config-vitnode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"eslint": "8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
Expand Down
Loading

0 comments on commit bb347e2

Please sign in to comment.