@tailwindcss-mangle/core 2.2.2 → 2.3.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/dist/index.cjs +197 -277
- package/dist/index.d.cts +21 -22
- package/dist/index.d.mts +21 -22
- package/dist/index.d.ts +21 -22
- package/dist/index.mjs +193 -284
- package/package.json +33 -34
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailwindcss-mangle/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "The core of tailwindcss-mangle",
|
|
5
|
+
"author": "SonOfMagic <qq1324318532@gmail.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://github.com/sonofmagic/tailwindcss-mangle",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/sonofmagic/tailwindcss-mangle.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/sonofmagic/tailwindcss-mangle/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"tailwindcss",
|
|
17
|
+
"patch",
|
|
18
|
+
"core",
|
|
19
|
+
"mangle"
|
|
20
|
+
],
|
|
5
21
|
"exports": {
|
|
6
22
|
".": {
|
|
7
23
|
"types": "./dist/index.d.ts",
|
|
@@ -9,6 +25,9 @@
|
|
|
9
25
|
"require": "./dist/index.cjs"
|
|
10
26
|
}
|
|
11
27
|
},
|
|
28
|
+
"main": "./dist/index.cjs",
|
|
29
|
+
"module": "./dist/index.mjs",
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
12
31
|
"typesVersions": {
|
|
13
32
|
"*": {
|
|
14
33
|
"*": [
|
|
@@ -17,53 +36,33 @@
|
|
|
17
36
|
]
|
|
18
37
|
}
|
|
19
38
|
},
|
|
20
|
-
"main": "./dist/index.cjs",
|
|
21
|
-
"module": "./dist/index.mjs",
|
|
22
|
-
"types": "./dist/index.d.ts",
|
|
23
39
|
"files": [
|
|
24
40
|
"dist"
|
|
25
41
|
],
|
|
26
|
-
"keywords": [
|
|
27
|
-
"tailwindcss",
|
|
28
|
-
"patch",
|
|
29
|
-
"core",
|
|
30
|
-
"mangle"
|
|
31
|
-
],
|
|
32
|
-
"author": "SonOfMagic <qq1324318532@gmail.com>",
|
|
33
|
-
"license": "MIT",
|
|
34
42
|
"publishConfig": {
|
|
35
43
|
"access": "public",
|
|
36
44
|
"registry": "https://registry.npmjs.org/"
|
|
37
45
|
},
|
|
38
46
|
"dependencies": {
|
|
39
47
|
"@ast-core/escape": "^1.0.1",
|
|
40
|
-
"@babel/
|
|
41
|
-
"@babel/
|
|
42
|
-
"@babel/
|
|
43
|
-
"@
|
|
48
|
+
"@babel/parser": "^7.24.7",
|
|
49
|
+
"@babel/traverse": "^7.24.7",
|
|
50
|
+
"@babel/types": "^7.24.7",
|
|
51
|
+
"@vue/compiler-sfc": "^3.4.29",
|
|
44
52
|
"fast-sort": "^3.4.0",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"postcss": "^8.4.
|
|
49
|
-
"postcss-selector-parser": "^6.0
|
|
53
|
+
"htmlparser2": "9.1.0",
|
|
54
|
+
"magic-string": "^0.30.10",
|
|
55
|
+
"micromatch": "^4.0.7",
|
|
56
|
+
"postcss": "^8.4.38",
|
|
57
|
+
"postcss-selector-parser": "^6.1.0",
|
|
50
58
|
"@tailwindcss-mangle/config": "^2.2.2",
|
|
51
59
|
"@tailwindcss-mangle/shared": "^2.2.2"
|
|
52
60
|
},
|
|
53
61
|
"devDependencies": {
|
|
54
|
-
"@
|
|
55
|
-
"@types/
|
|
56
|
-
"@
|
|
57
|
-
"@vue/compiler-
|
|
58
|
-
"@vue/compiler-sfc": "^3.3.4"
|
|
59
|
-
},
|
|
60
|
-
"homepage": "https://github.com/sonofmagic/tailwindcss-mangle",
|
|
61
|
-
"repository": {
|
|
62
|
-
"type": "git",
|
|
63
|
-
"url": "git+https://github.com/sonofmagic/tailwindcss-mangle.git"
|
|
64
|
-
},
|
|
65
|
-
"bugs": {
|
|
66
|
-
"url": "https://github.com/sonofmagic/tailwindcss-mangle/issues"
|
|
62
|
+
"@types/babel__traverse": "^7.20.6",
|
|
63
|
+
"@types/micromatch": "^4.0.7",
|
|
64
|
+
"@vue/compiler-core": "^3.4.29",
|
|
65
|
+
"@vue/compiler-sfc": "^3.4.27"
|
|
67
66
|
},
|
|
68
67
|
"directories": {
|
|
69
68
|
"test": "test"
|