1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-12-08 00:44:30 +01:00

Compare commits

..

No commits in common. "09d677bd37e6e0ef539d064266eb922c78bbfc93" and "af5c845e4baa178467e081d7d5fc909ddc962462" have entirely different histories.

15 changed files with 232 additions and 265 deletions

View File

@ -32,7 +32,7 @@ The commit message guidelines adheres to [Conventional Commits](https://www.conv
### Prerequisites ### Prerequisites
- [Node.js](https://nodejs.org/) >= 22.0.0 - [Node.js](https://nodejs.org/) >= 22.0.0
- [pnpm](https://pnpm.io/) >= 9.15.0 [(`corepack enable`)](https://nodejs.org/docs/latest-v22.x/api/corepack.html) - [pnpm](https://pnpm.io/) >= 9.14.4 [(`corepack enable`)](https://nodejs.org/docs/latest-v22.x/api/corepack.html)
- [Docker](https://www.docker.com/) - [Docker](https://www.docker.com/)
### Installation ### Installation

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/storybook", "name": "@repo/storybook",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/website", "name": "@repo/website",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"imports": { "imports": {

View File

@ -1,12 +1,12 @@
{ {
"name": "repo", "name": "repo",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c", "packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"engines": { "engines": {
"node": ">=22.0.0", "node": ">=22.0.0",
"pnpm": ">=9.15.0" "pnpm": ">=9.14.4"
}, },
"scripts": { "scripts": {
"build": "turbo run build", "build": "turbo run build",

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/blog", "name": "@repo/blog",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"exports": { "exports": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/eslint-config", "name": "@repo/eslint-config",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"exports": { "exports": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/config-tailwind", "name": "@repo/config-tailwind",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"main": "./tailwind.config.js", "main": "./tailwind.config.js",

View File

@ -1,4 +1,5 @@
import typographyPlugin from "@tailwindcss/typography" import typographyPlugin from "@tailwindcss/typography"
import { fontFamily } from "tailwindcss/defaultTheme"
/** @type {Omit<import('tailwindcss').Config, "content">} */ /** @type {Omit<import('tailwindcss').Config, "content">} */
const config = { const config = {
@ -28,7 +29,7 @@ const config = {
lightFlag: "0px 1px 10px rgba(0, 0, 0, 0.25)", lightFlag: "0px 1px 10px rgba(0, 0, 0, 0.25)",
}, },
fontFamily: { fontFamily: {
sans: ["Montserrat", "sans-serif"], sans: ["'Montserrat'", ...fontFamily.sans],
}, },
typography: { typography: {
DEFAULT: { DEFAULT: {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/config-typescript", "name": "@repo/config-typescript",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"files": [ "files": [
"tsconfig.json" "tsconfig.json"

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/i18n", "name": "@repo/i18n",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"exports": { "exports": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/react-hooks", "name": "@repo/react-hooks",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"exports": { "exports": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/ui", "name": "@repo/ui",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"exports": { "exports": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@repo/utils", "name": "@repo/utils",
"version": "4.1.2", "version": "4.1.1",
"private": true, "private": true,
"type": "module", "type": "module",
"exports": { "exports": {

462
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -21,8 +21,8 @@ catalog:
"react": "19.0.0" "react": "19.0.0"
"react-dom": "19.0.0" "react-dom": "19.0.0"
"react-icons": "5.4.0" "react-icons": "5.4.0"
"@types/react": "19.0.1" "@types/react": "19.0.0"
"@types/react-dom": "19.0.1" "@types/react-dom": "19.0.0"
# Blog # Blog
"@giscus/react": "3.0.0" "@giscus/react": "3.0.0"