1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-10-11 17:06:21 +02:00

build(deps): update latest

This commit is contained in:
2025-10-11 16:59:42 +02:00
parent 9c20844d89
commit be738a1c8d
29 changed files with 1456 additions and 1536 deletions

View File

@@ -1,4 +1,4 @@
FROM node:24.7.0-slim AS node-pnpm
FROM node:24.10.0-slim AS node-pnpm
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN npm install --global corepack@0.34.0 && corepack enable
@@ -9,7 +9,7 @@ WORKDIR /usr/src/app
FROM node-pnpm AS builder
COPY ./ ./
RUN pnpm install --global turbo@2.5.6
RUN pnpm install --global turbo@2.5.8
RUN turbo prune @repo/website --docker
FROM node-pnpm AS installer
@@ -23,7 +23,7 @@ COPY --from=builder /usr/src/app/out/full/ ./
COPY turbo.json turbo.json
ARG VERSION="0.0.0-develop"
RUN pnpm install --global replace-in-files-cli@3.0.0
RUN pnpm install --global replace-in-files-cli@4.0.0
RUN VERSION_STRIPPED=${VERSION#v} && replace-in-files --regex='version": *"[^"]*' --replacement='"version": "'"$VERSION_STRIPPED"'"' '**/package.json' '!**/node_modules/**'
RUN pnpm --filter=@repo/website... exec turbo run build

View File

@@ -1,7 +1,8 @@
import typescriptESLint from "typescript-eslint"
import { defineConfig } from "eslint/config"
import config from "@repo/config-eslint"
export default typescriptESLint.config(...config, {
export default defineConfig(...config, {
files: ["**/*.ts", "**/*.tsx"],
languageOptions: {
parser: typescriptESLint.parser,

View File

@@ -11,7 +11,7 @@
"build": "next build --turbopack",
"start": "next start --port 3000",
"typegen": "next typegen",
"lint:eslint": "eslint . --max-warnings 0",
"lint:eslint": "eslint app --max-warnings 0",
"lint:typescript": "next typegen && tsc --noEmit"
},
"dependencies": {

View File

@@ -4,9 +4,6 @@
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["@total-typescript/ts-reset", "@repo/i18n/messages.d.ts"],
"allowJs": true,
"paths": {
"#*": ["./*"]
},
"plugins": [
{
"name": "next"