Skip to content

Commit 05d6a90

Browse files
committed
chore: upgarde tw 3.3.2 and add test case
1 parent 03dedc1 commit 05d6a90

File tree

27 files changed

+1159
-386
lines changed

27 files changed

+1159
-386
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
packages/unplugin-tailwindcss-mangle/test/fixtures/**/*
1+
packages/unplugin-tailwindcss-mangle/test/fixtures/**/*
2+
packages/tailwindcss-patch/test/fixtures/**/*

apps/next-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
"prepare": "tw-patch"
1111
},
1212
"dependencies": {
13-
"@types/node": "18.16.0",
13+
"@types/node": "18.16.1",
1414
"@types/react": "18.2.0",
15-
"@types/react-dom": "18.2.0",
15+
"@types/react-dom": "18.2.1",
1616
"autoprefixer": "10.4.14",
1717
"eslint": "8.39.0",
1818
"eslint-config-next": "13.3.1",
1919
"next": "13.3.1",
2020
"postcss": "8.4.23",
2121
"react": "18.2.0",
2222
"react-dom": "18.2.0",
23-
"tailwindcss": "3.3.1",
23+
"tailwindcss": "3.3.2",
2424
"typescript": "5.0.4"
2525
},
2626
"devDependencies": {

apps/remix-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"@remix-run/dev": "^1.15.0",
2121
"@remix-run/eslint-config": "^1.15.0",
2222
"@types/react": "^18.2.0",
23-
"@types/react-dom": "^18.2.0",
23+
"@types/react-dom": "^18.2.1",
2424
"eslint": "^8.39.0",
25-
"tailwindcss": "^3.3.1",
25+
"tailwindcss": "^3.3.2",
2626
"tailwindcss-patch": "workspace:*",
2727
"typescript": "^5.0.4",
2828
"unplugin-tailwindcss-mangle": "workspace:*"

apps/solid-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"devDependencies": {
1515
"autoprefixer": "^10.4.14",
1616
"postcss": "^8.4.23",
17-
"tailwindcss": "^3.3.1",
17+
"tailwindcss": "^3.3.2",
1818
"tailwindcss-patch": "workspace:*",
1919
"typescript": "^5.0.4",
2020
"unplugin-tailwindcss-mangle": "workspace:*",

apps/vite-lit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"prepare": "tw-patch"
1919
},
2020
"dependencies": {
21-
"lit": "^2.6.1"
21+
"lit": "^2.7.3"
2222
},
2323
"devDependencies": {
2424
"autoprefixer": "^10.4.14",
2525
"postcss": "^8.4.23",
26-
"tailwindcss": "^3.3.1",
26+
"tailwindcss": "^3.3.2",
2727
"tailwindcss-patch": "workspace:*",
2828
"typescript": "^5.0.4",
2929
"unplugin-tailwindcss-mangle": "workspace:*",

apps/vite-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
},
1616
"devDependencies": {
1717
"@types/react": "^18.2.0",
18-
"@types/react-dom": "^18.2.0",
18+
"@types/react-dom": "^18.2.1",
1919
"@vitejs/plugin-react": "^4.0.0",
2020
"autoprefixer": "^10.4.14",
2121
"postcss": "^8.4.23",
22-
"tailwindcss": "^3.3.1",
22+
"tailwindcss": "^3.3.2",
2323
"tailwindcss-patch": "workspace:*",
2424
"typescript": "^5.0.4",
2525
"unplugin-tailwindcss-mangle": "workspace:*",

apps/vite-svelte/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"check": "svelte-check --tsconfig ./tsconfig.json"
1111
},
1212
"devDependencies": {
13-
"@sveltejs/vite-plugin-svelte": "^2.1.0",
13+
"@sveltejs/vite-plugin-svelte": "^2.1.1",
1414
"@tsconfig/svelte": "^4.0.1",
1515
"autoprefixer": "^10.4.14",
1616
"postcss": "^8.4.23",
1717
"svelte": "^3.55.1",
1818
"svelte-check": "^3.2.0",
19-
"tailwindcss": "^3.3.1",
19+
"tailwindcss": "^3.3.2",
2020
"tailwindcss-patch": "workspace:*",
2121
"tslib": "^2.5.0",
2222
"typescript": "^5.0.4",

apps/vite-vanilla/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"devDependencies": {
1313
"autoprefixer": "^10.4.14",
1414
"postcss": "^8.4.23",
15-
"tailwindcss": "^3.3.1",
15+
"tailwindcss": "^3.3.2",
1616
"tailwindcss-patch": "workspace:*",
1717
"typescript": "^5.0.4",
1818
"unplugin-tailwindcss-mangle": "workspace:*",

apps/vite-vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"vue": "^3.2.47"
1414
},
1515
"devDependencies": {
16-
"@vitejs/plugin-vue": "^4.2.0",
16+
"@vitejs/plugin-vue": "^4.2.1",
1717
"autoprefixer": "^10.4.14",
1818
"postcss": "^8.4.23",
19-
"tailwindcss": "^3.3.1",
19+
"tailwindcss": "^3.3.2",
2020
"tailwindcss-patch": "workspace:*",
2121
"typescript": "^5.0.4",
2222
"unplugin-tailwindcss-mangle": "workspace:*",

apps/webpack5-vue3/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"eslint-plugin-promise": "^6.1.1",
3232
"eslint-plugin-vue": "^9.11.0",
3333
"postcss": "^8.4.23",
34-
"sass": "^1.32.7",
34+
"sass": "^1.62.1",
3535
"sass-loader": "^13.2.2",
36-
"tailwindcss": "^3.3.1",
36+
"tailwindcss": "^3.3.2",
3737
"tailwindcss-patch": "workspace:*",
3838
"typescript": "~5.0.4",
3939
"unplugin-tailwindcss-mangle": "workspace:*"

0 commit comments

Comments
 (0)