Skip to content

Commit 2106a41

Browse files
authored
Feat: update dependencies (#75)
* chore: update tailwindcss * chore: comment apply rules * chore: remove all apply to trick update * chore: update tailwindcss classes * chore: remove unused stuff * chore: remove useless pnpm overrides
1 parent 080d740 commit 2106a41

File tree

8 files changed

+1225
-1615
lines changed

8 files changed

+1225
-1615
lines changed

astro.config.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
import { defineConfig } from "astro/config"
22
import vue from "@astrojs/vue"
3-
import tailwind from "@astrojs/tailwind"
43
import remarkToc from "remark-toc"
54

5+
import tailwindcss from "@tailwindcss/vite"
6+
67
// https://astro.build/config
78
export default defineConfig({
89
site: import.meta.env.PROD ? "https://halivert.dev" : undefined,
910
i18n: { locales: ["es-419", "en"], defaultLocale: "es-419" },
11+
1012
markdown: {
1113
remarkPlugins: [[remarkToc, { heading: "Índice|Index", maxDepth: 4 }]],
1214
shikiConfig: {
1315
themes: { light: "vitesse-light", dark: "synthwave-84" },
1416
defaultColor: false,
1517
},
1618
},
17-
integrations: [vue({ devtools: true }), tailwind({ applyBaseStyles: false })],
19+
20+
integrations: [vue({ devtools: true })],
21+
22+
vite: {
23+
plugins: [tailwindcss()],
24+
},
1825
})

package.json

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"preview": "astro preview"
1010
},
1111
"dependencies": {
12-
"@astrojs/tailwind": "^5.1.4",
13-
"@astrojs/vue": "^5.0.3",
14-
"astro": "^5.1.1",
12+
"@astrojs/vue": "^5.1.0",
13+
"@tailwindcss/vite": "^4.1.11",
14+
"astro": "^5.12.3",
1515
"lodash": "4.17.21",
1616
"lunr": "2.3.9",
1717
"remark-toc": "^9.0.0",
18-
"tailwindcss": "^3.4.17",
18+
"tailwindcss": "^4.1.11",
1919
"vue": "3.5.18"
2020
},
2121
"prettier": {
@@ -29,22 +29,6 @@
2929
"@vue/reactivity": "^3.5.13",
3030
"prettier": "^3.4.2",
3131
"prettier-plugin-astro": "^0.14.1",
32-
"sharp": "^0.33.5",
33-
"tslib": "^2.8.1",
3432
"typescript": "5.0.3"
35-
},
36-
"pnpm": {
37-
"overrides": {
38-
"esbuild@<=0.24.2": ">=0.25.0",
39-
"vite@>=6.0.0 <=6.0.8": ">=6.0.9",
40-
"vite@>=6.0.0 <6.0.12": ">=6.0.12",
41-
"vite@>=6.0.0 <6.0.13": ">=6.0.13",
42-
"vite@>=6.0.0 <6.0.15": ">=6.0.15",
43-
"@babel/helpers@<7.26.10": ">=7.26.10",
44-
"vite@>=6.0.0 <=6.1.5": ">=6.1.6",
45-
"vite@>=6.0.0 <6.0.14": ">=6.0.14",
46-
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
47-
"prismjs@<1.30.0": ">=1.30.0"
48-
}
4933
}
5034
}

0 commit comments

Comments
 (0)