@trionesdev/antd-mobile-icons-react 0.0.2-beta.1 → 0.0.2-beta.11
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/LICENSE +21 -21
- package/README.md +43 -43
- package/dist/style/global.scss +684 -684
- package/dist/style/iconfont.json +1178 -1178
- package/dist/style/iconfont.ttf +0 -0
- package/dist/style/iconfont.woff +0 -0
- package/dist/style/iconfont.woff2 +0 -0
- package/package.json +15 -58
package/dist/style/iconfont.ttf
CHANGED
|
Binary file
|
package/dist/style/iconfont.woff
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,82 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trionesdev/antd-mobile-icons-react",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.2-beta.11",
|
|
4
|
+
"description": "AntdMobileIconReact",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"
|
|
9
|
-
"dev": "dumi dev",
|
|
8
|
+
"dev": "father dev",
|
|
10
9
|
"build": "father build",
|
|
11
|
-
"build:
|
|
12
|
-
"docs:build": "dumi build",
|
|
13
|
-
"docs:preview": "dumi preview",
|
|
14
|
-
"prepare": "dumi setup",
|
|
15
|
-
"doctor": "father doctor",
|
|
16
|
-
"lint": "npm run lint:es && npm run lint:css",
|
|
17
|
-
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
|
18
|
-
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
|
10
|
+
"build:deps": "father prebundle",
|
|
19
11
|
"prepublishOnly": "father doctor && npm run build",
|
|
20
|
-
"publish": "npm publish --registry=https://registry.npmjs.org/",
|
|
12
|
+
"publish": "npm publish --tag latest --registry=https://registry.npmjs.org/",
|
|
21
13
|
"publishOnly": "npm publish --ignore-scripts --registry=https://registry.npmjs.org/"
|
|
22
14
|
},
|
|
15
|
+
"keywords": [],
|
|
23
16
|
"authors": [
|
|
24
17
|
"fengxiaotx@163.com"
|
|
25
18
|
],
|
|
26
19
|
"license": "MIT",
|
|
27
20
|
"files": [
|
|
28
|
-
"dist"
|
|
21
|
+
"dist",
|
|
22
|
+
"compiled"
|
|
29
23
|
],
|
|
30
|
-
"commitlint": {
|
|
31
|
-
"extends": [
|
|
32
|
-
"@commitlint/config-conventional"
|
|
33
|
-
]
|
|
34
|
-
},
|
|
35
|
-
"lint-staged": {
|
|
36
|
-
"*.{md,json}": [
|
|
37
|
-
"prettier --write --no-error-on-unmatched-pattern"
|
|
38
|
-
],
|
|
39
|
-
"*.{css,less}": [
|
|
40
|
-
"stylelint --fix",
|
|
41
|
-
"prettier --write"
|
|
42
|
-
],
|
|
43
|
-
"*.{js,jsx}": [
|
|
44
|
-
"eslint --fix",
|
|
45
|
-
"prettier --write"
|
|
46
|
-
],
|
|
47
|
-
"*.{ts,tsx}": [
|
|
48
|
-
"eslint --fix",
|
|
49
|
-
"prettier --parser=typescript --write"
|
|
50
|
-
]
|
|
51
|
-
},
|
|
52
24
|
"publishConfig": {
|
|
53
25
|
"access": "public"
|
|
54
26
|
},
|
|
55
27
|
"peerDependencies": {
|
|
56
|
-
"
|
|
57
|
-
"
|
|
28
|
+
"classnames": "^2.5.1",
|
|
29
|
+
"lodash-es": "^4.17.21",
|
|
30
|
+
"react": ">=16.9.0"
|
|
58
31
|
},
|
|
59
32
|
"devDependencies": {
|
|
60
|
-
"@
|
|
61
|
-
"@commitlint/config-conventional": "^19.6.0",
|
|
62
|
-
"@types/node": "^18.15.11",
|
|
33
|
+
"@types/node": "^18.19.123",
|
|
63
34
|
"@types/react": "^18.0.0",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"dumi": "2.4.12",
|
|
67
|
-
"eslint": "^8.23.0",
|
|
68
|
-
"father": "^4.5.1",
|
|
69
|
-
"husky": "^9.1.7",
|
|
70
|
-
"lint-staged": "^15.3.0",
|
|
71
|
-
"prettier": "^3.4.2",
|
|
72
|
-
"prettier-plugin-organize-imports": "^4.1.0",
|
|
73
|
-
"prettier-plugin-packagejson": "^2.5.6",
|
|
74
|
-
"react": "^18.0.0",
|
|
75
|
-
"react-dom": "^18.0.0",
|
|
76
|
-
"stylelint": "^14.9.1"
|
|
77
|
-
},
|
|
78
|
-
"dependencies": {
|
|
79
|
-
"classnames": "^2.5.1"
|
|
35
|
+
"father": "^4.6.9",
|
|
36
|
+
"react": "^18.0.0"
|
|
80
37
|
},
|
|
81
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "c062f3bd8651ea933f9385279c05a1ab0245b2b8"
|
|
82
39
|
}
|