1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-11-01 00:53:23 +01:00
2025-11-01 00:11:08 +01:00
parent 338741d252
commit c86a039c1f
17 changed files with 2154 additions and 2181 deletions

View File

@@ -18,23 +18,23 @@ jobs:
NEXT_TELEMETRY_DISABLED: "1" NEXT_TELEMETRY_DISABLED: "1"
STORYBOOK_DISABLE_TELEMETRY: "1" STORYBOOK_DISABLE_TELEMETRY: "1"
steps: steps:
- uses: "actions/checkout@v5.0.0" - uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8" # v5.0.0
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: "pnpm/action-setup@v4.1.0" - uses: "pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda" # v4.1.0
- name: "Setup Node.js" - name: "Setup Node.js"
uses: "actions/setup-node@v5.0.0" uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903" # v6.0.0
with: with:
node-version: "24.x" node-version: "24.10.0"
cache: "pnpm" cache: "pnpm"
- name: "Install dependencies" - name: "Install dependencies"
run: "pnpm install --frozen-lockfile" run: "pnpm install --frozen-lockfile"
- name: "Run Chromatic" - name: "Run Chromatic"
uses: "chromaui/action@latest" uses: "chromaui/action@ac86f2ff0a458ffbce7b40698abd44c0fa34d4b6" # latest
with: with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: "apps/storybook" workingDir: "apps/storybook"

View File

@@ -18,14 +18,14 @@ jobs:
NEXT_TELEMETRY_DISABLED: "1" NEXT_TELEMETRY_DISABLED: "1"
STORYBOOK_DISABLE_TELEMETRY: "1" STORYBOOK_DISABLE_TELEMETRY: "1"
steps: steps:
- uses: "actions/checkout@v5.0.0" - uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8" # v5.0.0
- uses: "pnpm/action-setup@v4.1.0" - uses: "pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda" # v4.1.0
- name: "Setup Node.js" - name: "Setup Node.js"
uses: "actions/setup-node@v5.0.0" uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903" # v6.0.0
with: with:
node-version: "24.x" node-version: "24.10.0"
cache: "pnpm" cache: "pnpm"
- name: "Install dependencies" - name: "Install dependencies"

View File

@@ -28,7 +28,7 @@ The commit message guidelines adheres to [Conventional Commits](https://www.conv
### Prerequisites ### Prerequisites
- [Node.js](https://nodejs.org/) >= v24.0.0 [(`nvm install 24`)](https://nvm.sh) - [Node.js](https://nodejs.org/) >= v24.0.0 [(`nvm install 24`)](https://nvm.sh)
- [pnpm](https://pnpm.io/) v10.18.2 [(`npm install --global corepack@0.34.0 && corepack enable`)](https://github.com/nodejs/corepack) - [pnpm](https://pnpm.io/) v10.20.0 [(`npm install --global corepack@0.34.1 && corepack enable`)](https://github.com/nodejs/corepack)
- [Docker](https://www.docker.com/) - [Docker](https://www.docker.com/)
### Installation ### Installation

View File

@@ -1,7 +1,7 @@
FROM node:24.10.0-slim AS node-pnpm FROM node:24.10.0-slim@sha256:b8d2197aff9129d16c801a3e3e1b2a873c4946480f5a310f38056df2268c38d9 AS node-pnpm
ENV PNPM_HOME="/pnpm" ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH" ENV PATH="$PNPM_HOME:$PATH"
RUN npm install --global corepack@0.34.0 && corepack enable RUN npm install --global corepack@0.34.1 && corepack enable
ENV TURBO_TELEMETRY_DISABLED=1 ENV TURBO_TELEMETRY_DISABLED=1
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
ENV DO_NOT_TRACK=1 ENV DO_NOT_TRACK=1
@@ -9,7 +9,7 @@ WORKDIR /usr/src/app
FROM node-pnpm AS builder FROM node-pnpm AS builder
COPY ./ ./ COPY ./ ./
RUN pnpm install --global turbo@2.5.8 RUN pnpm install --global turbo@2.6.0
RUN turbo prune @repo/website --docker RUN turbo prune @repo/website --docker
FROM node-pnpm AS installer FROM node-pnpm AS installer

View File

@@ -11,12 +11,12 @@ const nextConfig: NextConfig = {
images: { images: {
unoptimized: true, unoptimized: true,
}, },
eslint: {
ignoreDuringBuilds: true,
},
typescript: { typescript: {
ignoreBuildErrors: true, ignoreBuildErrors: true,
}, },
experimental: {
turbopackFileSystemCacheForDev: true,
},
} }
const withNextIntl = createNextIntlPlugin({ const withNextIntl = createNextIntlPlugin({

View File

@@ -7,8 +7,8 @@
"#*": "./*" "#*": "./*"
}, },
"scripts": { "scripts": {
"dev": "next dev --port 3000 --turbopack", "dev": "next dev --port 3000",
"build": "next build --turbopack", "build": "next build",
"start": "next start --port 3000", "start": "next start --port 3000",
"typegen": "next typegen", "typegen": "next typegen",
"lint:eslint": "eslint app --max-warnings 0", "lint:eslint": "eslint app --max-warnings 0",

View File

@@ -48,7 +48,7 @@
q, q,
blockquote { blockquote {
@apply italic tracking-wider; @apply tracking-wider italic;
} }
blockquote { blockquote {
@apply border-gray-lighter border-l-4 pl-3 italic; @apply border-gray-lighter border-l-4 pl-3 italic;

View File

@@ -3,7 +3,7 @@
"version": "0.0.0-develop", "version": "0.0.0-develop",
"private": true, "private": true,
"type": "module", "type": "module",
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd", "packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"engines": { "engines": {
"node": ">=24.0.0" "node": ">=24.0.0"
}, },

View File

@@ -7,7 +7,7 @@ import { Spinner } from "../Spinner/Spinner.tsx"
import { Ripple } from "./Ripple.tsx" import { Ripple } from "./Ripple.tsx"
const buttonVariants = cva({ const buttonVariants = cva({
base: "relative inline-flex items-center justify-center overflow-hidden rounded-md text-base font-semibold transition duration-150 ease-in-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", base: "relative inline-flex items-center justify-center overflow-hidden rounded-md text-base font-semibold transition duration-150 ease-in-out focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50",
variants: { variants: {
variant: { variant: {
solid: "bg-primary hover:bg-primary/80 text-white", solid: "bg-primary hover:bg-primary/80 text-white",

View File

@@ -17,7 +17,7 @@ export const Link: React.FC<LinkProps> = (props) => {
return ( return (
<NextLink <NextLink
className={classNames( className={classNames(
"text-primary dark:text-primary-dark inline-flex items-center gap-1 font-semibold hover:underline focus:rounded-md focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2", "text-primary dark:text-primary-dark inline-flex items-center gap-1 font-semibold hover:underline focus:rounded-md focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none",
className, className,
)} )}
target={target} target={target}

View File

@@ -11,8 +11,8 @@ const typographyVariants = cva({
h4: "text-primary dark:text-primary-dark text-xl font-semibold", h4: "text-primary dark:text-primary-dark text-xl font-semibold",
h5: "text-primary dark:text-primary-dark text-xl font-medium", h5: "text-primary dark:text-primary-dark text-xl font-medium",
h6: "text-primary dark:text-primary-dark text-lg font-medium", h6: "text-primary dark:text-primary-dark text-lg font-medium",
text1: "break-words text-base", text1: "text-base break-words",
text2: "break-words text-sm", text2: "text-sm break-words",
}, },
}, },
}) })

View File

@@ -62,7 +62,7 @@ export const SwitchTheme: React.FC<SwitchThemeProps> = () => {
return ( return (
<div className="flex items-center justify-center" onClick={toggleTheme}> <div className="flex items-center justify-center" onClick={toggleTheme}>
<div className="relative inline-block cursor-pointer touch-pan-x select-none border-0 bg-transparent p-0"> <div className="relative inline-block cursor-pointer touch-pan-x border-0 bg-transparent p-0 select-none">
<div className="h-[24px] w-[50px] rounded-[30px] bg-[#4d4d4d] p-0 text-white transition-all duration-200 ease-in-out"> <div className="h-[24px] w-[50px] rounded-[30px] bg-[#4d4d4d] p-0 text-white transition-all duration-200 ease-in-out">
<div <div
className={classNames( className={classNames(

View File

@@ -75,7 +75,7 @@ export const SectionContent: React.FC<SectionContentProps> = (props) => {
return ( return (
<div <div
className={classNames( className={classNames(
"size-full max-w-full break-words px-6 py-4 sm:px-16", "size-full max-w-full px-6 py-4 break-words sm:px-16",
{ {
"shadow-light dark:shadow-dark max-w-full rounded-2xl border border-solid border-black": "shadow-light dark:shadow-dark max-w-full rounded-2xl border border-solid border-black":
shadowContainer, shadowContainer,

4242
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -7,30 +7,30 @@ catalogMode: "strict"
catalog: catalog:
# Turborepo # Turborepo
"turbo": "2.5.8" "turbo": "2.6.0"
# TypeScript # TypeScript
"typescript": "5.9.3" "typescript": "5.9.3"
"@total-typescript/ts-reset": "0.6.1" "@total-typescript/ts-reset": "0.6.1"
"@types/node": "24.7.2" "@types/node": "24.9.2"
# Utils # Utils
"mime": "4.1.0" "mime": "4.1.0"
# React.js/Next.js # React.js/Next.js
"next": &next "15.5.4" "next": &next "16.0.1"
"next-intl": "4.3.12" "next-intl": "4.4.0"
"next-themes": "0.4.6" "next-themes": "0.4.6"
"react": "19.2.0" "react": "19.2.0"
"react-dom": "19.2.0" "react-dom": "19.2.0"
"@types/react": "19.2.2" "@types/react": "19.2.2"
"@types/react-dom": "19.2.1" "@types/react-dom": "19.2.2"
"react-icons": "5.5.0" "react-icons": "5.5.0"
# Blog # Blog
"@giscus/react": "3.1.0" "@giscus/react": "3.1.0"
"gray-matter": "4.0.3" "gray-matter": "4.0.3"
"katex": "0.16.23" "katex": "0.16.25"
"next-mdx-remote": "5.0.0" "next-mdx-remote": "5.0.0"
"@mdx-js/mdx": "3.1.1" "@mdx-js/mdx": "3.1.1"
"rehype-katex": "7.0.1" "rehype-katex": "7.0.1"
@@ -48,41 +48,41 @@ catalog:
# ESLint # ESLint
"globals": "16.4.0" "globals": "16.4.0"
"typescript-eslint": "8.46.0" "typescript-eslint": "8.46.2"
"eslint": "9.37.0" "eslint": "9.39.0"
"eslint-config-conventions": "21.0.3" "eslint-config-conventions": "21.1.0"
"eslint-plugin-promise": "7.2.1" "eslint-plugin-promise": "7.2.1"
"eslint-plugin-unicorn": "61.0.2" "eslint-plugin-unicorn": "62.0.0"
"eslint-plugin-import-x": "4.16.1" "eslint-plugin-import-x": "4.16.1"
"@next/eslint-plugin-next": *next "@next/eslint-plugin-next": *next
"eslint-plugin-react": "7.37.5" "eslint-plugin-react": "7.37.5"
"eslint-plugin-react-hooks": "7.0.0" "eslint-plugin-react-hooks": "7.0.1"
# Prettier # Prettier
"prettier": "3.6.2" "prettier": "3.6.2"
"prettier-plugin-tailwindcss": "0.6.14" "prettier-plugin-tailwindcss": "0.7.1"
"editorconfig-checker": "6.1.0" "editorconfig-checker": "6.1.1"
# Storybook # Storybook
"storybook": &storybook "9.1.10" "storybook": &storybook "10.0.2"
"@storybook/addon-docs": *storybook "@storybook/addon-docs": *storybook
"@storybook/addon-a11y": *storybook "@storybook/addon-a11y": *storybook
"@storybook/nextjs": *storybook "@storybook/nextjs": *storybook
"@storybook/addon-themes": *storybook "@storybook/addon-themes": *storybook
"@storybook/test-runner": "0.23.0" "@storybook/test-runner": "0.24.1"
"@chromatic-com/storybook": "4.1.1" "@chromatic-com/storybook": "4.1.2"
"chromatic": "13.3.0" "chromatic": "13.3.3"
# Testing # Testing
"playwright": &playwright "1.56.0" "playwright": &playwright "1.56.1"
"@playwright/test": *playwright "@playwright/test": *playwright
"start-server-and-test": "2.1.2" "start-server-and-test": "2.1.2"
# CSS # CSS
"postcss": "8.5.6" "postcss": "8.5.6"
"@tailwindcss/postcss": "4.1.14" "@tailwindcss/postcss": "4.1.16"
"@tailwindcss/typography": "0.5.19" "@tailwindcss/typography": "0.5.19"
"tailwindcss": "4.1.14" "tailwindcss": "4.1.16"
"tailwind-merge": "3.3.1" "tailwind-merge": "3.3.1"
"clsx": "2.1.1" "clsx": "2.1.1"
"cva": "1.0.0-beta.4" "cva": "1.0.0-beta.4"

View File

@@ -1,5 +1,6 @@
{ {
"$schema": "./node_modules/turbo/schema.json", "$schema": "./node_modules/turbo/schema.json",
"noUpdateNotifier": true,
"ui": "tui", "ui": "tui",
"tasks": { "tasks": {
"build": { "build": {