@antv/dumi-theme-antv 0.7.9-beta.1 → 0.7.10
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/pages/Examples/index.module.less +2 -2
- package/dist/pages/Index/components/Cases/index.module.less +1 -1
- package/dist/pages/Index/components/Companies/index.module.less +1 -1
- package/dist/pages/Index/components/Detail/index.module.less +1 -1
- package/dist/pages/Index/components/Features/index.module.less +1 -1
- package/dist/slots/Banner/index.module.less +1 -1
- package/dist/slots/Footer/index.module.less +1 -1
- package/dist/slots/Header/Products/Product.module.less +1 -1
- package/dist/slots/Header/index.module.less +1 -1
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antv/dumi-theme-antv",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10",
|
|
4
4
|
"description": "AntV website theme based on dumi2.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dumi",
|
|
@@ -20,6 +20,17 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "npm run prepare && father build",
|
|
25
|
+
"dev": "father dev",
|
|
26
|
+
"fix": "prettier ./src --write",
|
|
27
|
+
"lint": "npm run lint:es && npm run lint:css",
|
|
28
|
+
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
|
29
|
+
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
|
30
|
+
"prepare": "father link-dev-theme",
|
|
31
|
+
"prepublishOnly": "npm run build",
|
|
32
|
+
"start": "cd example && npm run dev"
|
|
33
|
+
},
|
|
23
34
|
"commitlint": {
|
|
24
35
|
"extends": [
|
|
25
36
|
"@commitlint/config-conventional"
|
|
@@ -51,7 +62,7 @@
|
|
|
51
62
|
"@docsearch/css": "^3.8.0",
|
|
52
63
|
"@docsearch/react": "^3.8.0",
|
|
53
64
|
"@emotion/server": "^11.11.0",
|
|
54
|
-
"@monaco-editor/react": "
|
|
65
|
+
"@monaco-editor/react": "4.7.0",
|
|
55
66
|
"@petercatai/assistant": "^2.0.24",
|
|
56
67
|
"@stackblitz/sdk": "^1.11.0",
|
|
57
68
|
"antd": "^5.24.5",
|
|
@@ -76,7 +87,7 @@
|
|
|
76
87
|
"lodash.merge": "^4.6.2",
|
|
77
88
|
"mini-css-extract-plugin": "^2.9.2",
|
|
78
89
|
"moment": "^2.30.1",
|
|
79
|
-
"monaco-editor": "
|
|
90
|
+
"monaco-editor": "0.51.0",
|
|
80
91
|
"nprogress": "^0.2.0",
|
|
81
92
|
"p-limit": "^3.1.0",
|
|
82
93
|
"parse-github-url": "^1.0.3",
|
|
@@ -145,20 +156,10 @@
|
|
|
145
156
|
"react-dom": ">=16.9.0"
|
|
146
157
|
},
|
|
147
158
|
"publishConfig": {
|
|
148
|
-
"access": "public"
|
|
149
|
-
"tag": "beta"
|
|
159
|
+
"access": "public"
|
|
150
160
|
},
|
|
151
161
|
"authors": [
|
|
152
162
|
"dumi",
|
|
153
163
|
"antv"
|
|
154
|
-
]
|
|
155
|
-
|
|
156
|
-
"build": "npm run prepare && father build",
|
|
157
|
-
"dev": "father dev",
|
|
158
|
-
"fix": "prettier ./src --write",
|
|
159
|
-
"lint": "npm run lint:es && npm run lint:css",
|
|
160
|
-
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
|
|
161
|
-
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
|
|
162
|
-
"start": "cd example && npm run dev"
|
|
163
|
-
}
|
|
164
|
-
}
|
|
164
|
+
]
|
|
165
|
+
}
|