tailwindcss-patch 2.0.3 → 2.0.5-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/{index.cjs → chunk-W6X43COS.mjs} +257 -179
- package/dist/cli.d.mts +2 -0
- package/dist/cli.js +643 -0
- package/dist/cli.mjs +12 -19
- package/dist/index.d.mts +149 -0
- package/dist/index.js +661 -0
- package/dist/index.mjs +63 -522
- package/package.json +7 -7
- package/dist/cli.cjs +0 -46
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ npx tw-patch install
|
|
|
52
52
|
tw-patch init
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
Then there will be a ts file called `tailwindcss-
|
|
55
|
+
Then there will be a ts file called `tailwindcss-mangle.config.ts` exist in your `cwd`.
|
|
56
56
|
|
|
57
57
|
### Extract all class into a json
|
|
58
58
|
|
|
@@ -62,7 +62,7 @@ tw-patch extract
|
|
|
62
62
|
|
|
63
63
|
default there will be a json in `.tw-patch/tw-class-list.json` in your project.
|
|
64
64
|
|
|
65
|
-
you can custom this behavior by config `tailwindcss-
|
|
65
|
+
you can custom this behavior by config `tailwindcss-mangle.config.ts`
|
|
66
66
|
|
|
67
67
|
### Nodejs
|
|
68
68
|
|