8000 fix: don't need to install postcss with tailwindcss (#532) · svelte-add/svelte-add@26745a0 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 26745a0

Browse files
fix: don't need to install postcss with tailwindcss (#532)
Co-authored-by: AdrianGonz97 <31664583+AdrianGonz97@users.noreply.github.com>
1 parent 0145762 commit 26745a0

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.changeset/dull-games-deliver.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@svelte-add/adders': patch
3+
'svelte-add': patch
4+
---
5+
6+
fix: removed `postcss` install from `tailwindcss` adder

adders/tailwindcss/config/adder.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,17 @@ export const adder = defineAdderConfig({
1717
options,
1818
integrationType: 'inline',
1919
packages: [
20-
{ name: 'tailwindcss', version: '^3.4.4', dev: true },
21-
{ name: 'postcss', version: '^8.4.38', dev: true },
22-
{ name: 'autoprefixer', version: '^10.4.19', dev: true },
20+
{ name: 'tailwindcss', version: '^3.4.9', dev: true },
21+
{ name: 'autoprefixer', version: '^10.4.20', dev: true },
2322
{
2423
name: '@tailwindcss/typography',
25-
version: '^0.5.13',
24+
version: '^0.5.14',
2625
dev: true,
2726
condition: ({ options }) => options.typography,
2827
},
2928
{
3029
name: 'prettier-plugin-tailwindcss',
31-
version: '^0.6.4',
30+
version: '^0.6.5',
3231
dev: true,
3332
condition: ({ prettier }) => prettier.installed,
3433
},

0 commit comments

Comments
 (0)
0