Compare commits
29 Commits
dev
...
renovate/d
| Author | SHA1 | Date | |
|---|---|---|---|
| 4926da017f | |||
| 056a7edd5c | |||
| 5ccf0ffc59 | |||
| 3860a52c69 | |||
| 45e8aafb31 | |||
| 5b719b12fd | |||
| 18a3b42fec | |||
| 334fa3428c | |||
| b17f6e8f86 | |||
| bedb7a8699 | |||
| 34cd222a02 | |||
| 697ca626f4 | |||
| d35f643825 | |||
| a6b5fa487d | |||
| 2d64efec92 | |||
| 6db60d7875 | |||
| d70b4bc90e | |||
| b8a86885de | |||
| a44fa3a50b | |||
| 7b7feea11f | |||
| 2f879b449e | |||
| f906749340 | |||
| 620765564c | |||
| cfc52b085e | |||
| 5aa8fce32f | |||
| bf2000c49a | |||
| cbff054301 | |||
| c5fbc57a78 | |||
| 3173397ad3 |
@@ -13,13 +13,13 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
|
||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
|
||||
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
|
||||
with:
|
||||
node-version: 24
|
||||
cache: 'pnpm'
|
||||
|
||||
30
package.json
30
package.json
@@ -28,17 +28,17 @@
|
||||
"clsx": "^2.1.1",
|
||||
"cssnano": "^7.1.2",
|
||||
"date-fns": "^4.1.0",
|
||||
"drizzle-orm": "^0.44.7",
|
||||
"lucide-react": "^0.554.0",
|
||||
"drizzle-orm": "^0.45.0",
|
||||
"lucide-react": "^0.556.0",
|
||||
"nanoid": "^5.1.6",
|
||||
"next": "16.0.3",
|
||||
"next": "16.0.7",
|
||||
"next-plausible": "^3.12.5",
|
||||
"pg": "^8.16.3",
|
||||
"pg-native": "^3.5.2",
|
||||
"postcss-flexbugs-fixes": "^5.0.2",
|
||||
"postcss-preset-env": "^10.4.0",
|
||||
"react": "19.2.0",
|
||||
"react-dom": "19.2.0",
|
||||
"react": "19.2.1",
|
||||
"react-dom": "19.2.1",
|
||||
"tailwind-merge": "^3.4.0",
|
||||
"tailwindcss-animate": "^1.0.7"
|
||||
},
|
||||
@@ -46,24 +46,24 @@
|
||||
"@tailwindcss/postcss": "4.1.17",
|
||||
"@types/node": "24.10.1",
|
||||
"@types/pg": "8.15.6",
|
||||
"@types/react": "19.2.6",
|
||||
"@types/react": "19.2.7",
|
||||
"@types/react-dom": "19.2.3",
|
||||
"drizzle-kit": "0.31.7",
|
||||
"drizzle-kit": "0.31.8",
|
||||
"eslint": "9.39.1",
|
||||
"eslint-config-next": "16.0.3",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-config-next": "16.0.7",
|
||||
"eslint-config-prettier": "10.1.8",
|
||||
"postcss": "8.5.6",
|
||||
"prettier": "3.6.2",
|
||||
"prettier-plugin-tailwindcss": "0.7.1",
|
||||
"prettier": "3.7.4",
|
||||
"prettier-plugin-tailwindcss": "0.7.2",
|
||||
"tailwindcss": "4.1.17",
|
||||
"turbo": "2.6.1",
|
||||
"turbo": "2.6.3",
|
||||
"typescript": "5.9.3",
|
||||
"typescript-eslint": "8.47.0"
|
||||
"typescript-eslint": "8.48.1"
|
||||
},
|
||||
"packageManager": "pnpm@10.23.0",
|
||||
"packageManager": "pnpm@10.24.0",
|
||||
"pnpm": {
|
||||
"overrides": {
|
||||
"@types/react": "19.2.6",
|
||||
"@types/react": "19.2.7",
|
||||
"@types/react-dom": "19.2.3"
|
||||
}
|
||||
}
|
||||
|
||||
1129
pnpm-lock.yaml
generated
1129
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -2,27 +2,6 @@
|
||||
const config = {
|
||||
plugins: {
|
||||
'@tailwindcss/postcss': {},
|
||||
|
||||
"postcss-flexbugs-fixes": {
|
||||
"postcss-preset-env": {
|
||||
autoprefixer: {
|
||||
flexbox: "no-2009",
|
||||
},
|
||||
stage: 3,
|
||||
features: {
|
||||
"custom-properties": false,
|
||||
},
|
||||
},
|
||||
|
||||
"@fullhuman/postcss-purgecss": {
|
||||
content: [
|
||||
"./pages/**/*.{js,jsx,ts,tsx}",
|
||||
"./components/**/*.{js,jsx,ts,tsx}",
|
||||
],
|
||||
defaultExtractor: (content) => content.match(/[\w-/:]+(?<!:)/g) || [],
|
||||
safelist: ["html", "body"],
|
||||
},
|
||||
},
|
||||
cssnano: {},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user