Skip to content

Commit 8555bd2

Browse files
authored
Merge pull request #14 from sonofmagic/dev
Release: core 1.0.1
2 parents d504e14 + 41a13b7 commit 8555bd2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+2662
-2075
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
22
root: true,
3-
extends: ["@icebreakers/eslint-config-ts"]
3+
extends: ['@icebreakers/eslint-config-ts']
44
}

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ A util for mangle tailwindcss
44

55
- [tailwindcss-mangle](#tailwindcss-mangle)
66
- [tailwindcss-patch](#tailwindcss-patch)
7+
- [tailwindcss-mangle-core](#tailwindcss-mangle-core)
78
- [unplugin-tailwindcss-mangle](#unplugin-tailwindcss-mangle)
89

910
## tailwindcss-patch
@@ -12,6 +13,12 @@ A util for mangle tailwindcss
1213

1314
click [tailwindcss-patch](./packages/tailwindcss-patch) for more details.
1415

16+
## tailwindcss-mangle-core
17+
18+
The core of tailwindcss-mangle
19+
20+
click [tailwindcss-mangle-core](./packages/tailwindcss-mangle-core) for more details.
21+
1522
## unplugin-tailwindcss-mangle
1623

1724
`unplugin-tailwindcss-mangle` is a plugin for `webpack` and `vite` to **obfuscate** tailwindcss class.

apps/next-app/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"prepare": "tw-patch"
1111
},
1212
"dependencies": {
13-
"@types/node": "18.16.3",
14-
"@types/react": "18.2.0",
15-
"@types/react-dom": "18.2.1",
13+
"@types/node": "20.1.3",
14+
"@types/react": "18.2.6",
15+
"@types/react-dom": "18.2.4",
1616
"autoprefixer": "10.4.14",
17-
"eslint": "8.39.0",
18-
"eslint-config-next": "13.3.2",
19-
"next": "13.3.2",
17+
"eslint": "8.40.0",
18+
"eslint-config-next": "13.4.2",
19+
"next": "13.4.2",
2020
"postcss": "8.4.23",
2121
"react": "18.2.0",
2222
"react-dom": "18.2.0",

apps/nuxt-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prepare": "tw-patch"
1111
},
1212
"devDependencies": {
13-
"@types/node": "^18.16.3",
13+
"@types/node": "^20.1.3",
1414
"autoprefixer": "^10.4.14",
1515
"nuxt": "^3.4.3",
1616
"postcss": "^8.4.23",

apps/remix-app/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
"prepare": "tw-patch"
1010
},
1111
"dependencies": {
12-
"@remix-run/node": "^1.15.0",
13-
"@remix-run/react": "^1.15.0",
14-
"@remix-run/serve": "^1.15.0",
12+
"@remix-run/node": "^1.16.0",
13+
"@remix-run/react": "^1.16.0",
14+
"@remix-run/serve": "^1.16.0",
1515
"isbot": "^3.6.8",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0"
1818
},
1919
"devDependencies": {
20-
"@remix-run/dev": "^1.15.0",
21-
"@remix-run/eslint-config": "^1.15.0",
22-
"@types/react": "^18.2.0",
23-
"@types/react-dom": "^18.2.1",
24-
"eslint": "^8.39.0",
20+
"@remix-run/dev": "^1.16.0",
21+
"@remix-run/eslint-config": "^1.16.0",
22+
"@types/react": "^18.2.6",
23+
"@types/react-dom": "^18.2.4",
24+
"eslint": "^8.40.0",
2525
"tailwindcss": "^3.3.2",
2626
"tailwindcss-patch": "workspace:*",
2727
"typescript": "^5.0.4",

apps/solid-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"tailwindcss-patch": "workspace:*",
1919
"typescript": "^5.0.4",
2020
"unplugin-tailwindcss-mangle": "workspace:*",
21-
"vite": "^4.3.3",
21+
"vite": "^4.3.5",
2222
"vite-plugin-solid": "^2.5.0"
2323
},
2424
"dependencies": {
25-
"solid-js": "^1.6.10"
25+
"solid-js": "^1.7.5"
2626
}
2727
}

apps/vite-lit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"prepare": "tw-patch"
1919
},
2020
"dependencies": {
21-
"lit": "^2.7.3"
21+
"lit": "^2.7.4"
2222
},
2323
"devDependencies": {
2424
"autoprefixer": "^10.4.14",
@@ -27,6 +27,6 @@
2727
"tailwindcss-patch": "workspace:*",
2828
"typescript": "^5.0.4",
2929
"unplugin-tailwindcss-mangle": "workspace:*",
30-
"vite": "^4.3.3"
30+
"vite": "^4.3.5"
3131
}
3232
}

apps/vite-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"react-dom": "^18.2.0"
1515
},
1616
"devDependencies": {
17-
"@types/react": "^18.2.0",
18-
"@types/react-dom": "^18.2.1",
17+
"@types/react": "^18.2.6",
18+
"@types/react-dom": "^18.2.4",
1919
"@vitejs/plugin-react": "^4.0.0",
2020
"autoprefixer": "^10.4.14",
2121
"postcss": "^8.4.23",
2222
"tailwindcss": "^3.3.2",
2323
"tailwindcss-patch": "workspace:*",
2424
"typescript": "^5.0.4",
2525
"unplugin-tailwindcss-mangle": "workspace:*",
26-
"vite": "^4.3.3"
26+
"vite": "^4.3.5"
2727
}
2828
}

apps/vite-svelte/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
"check": "svelte-check --tsconfig ./tsconfig.json"
1111
},
1212
"devDependencies": {
13-
"@sveltejs/vite-plugin-svelte": "^2.1.1",
13+
"@sveltejs/vite-plugin-svelte": "^2.2.0",
1414
"@tsconfig/svelte": "^4.0.1",
1515
"autoprefixer": "^10.4.14",
1616
"postcss": "^8.4.23",
17-
"svelte": "^3.55.1",
18-
"svelte-check": "^3.2.0",
17+
"svelte": "^3.59.1",
18+
"svelte-check": "^3.3.2",
1919
"tailwindcss": "^3.3.2",
2020
"tailwindcss-patch": "workspace:*",
2121
"tslib": "^2.5.0",
2222
"typescript": "^5.0.4",
2323
"unplugin-tailwindcss-mangle": "workspace:*",
24-
"vite": "^4.3.3"
24+
"vite": "^4.3.5"
2525
}
2626
}

apps/vite-vanilla/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"tailwindcss-patch": "workspace:*",
1717
"typescript": "^5.0.4",
1818
"unplugin-tailwindcss-mangle": "workspace:*",
19-
"vite": "^4.3.3"
19+
"vite": "^4.3.5"
2020
}
2121
}

0 commit comments

Comments
 (0)