@visactor/taro-vchart 1.3.1-beta.1 → 1.3.1
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 +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -310,3 +310,15 @@ export function Pie() {
|
|
|
310
310
|
);
|
|
311
311
|
}
|
|
312
312
|
```
|
|
313
|
+
|
|
314
|
+
## 如何开发
|
|
315
|
+
|
|
316
|
+
```bash
|
|
317
|
+
# 因为 taro-vchart 依赖 vchart 的编译结果,所以先要运行如下命令
|
|
318
|
+
$ rush run -p @visactor/vchart -s build:es5
|
|
319
|
+
|
|
320
|
+
# 运行 lark 小程序
|
|
321
|
+
$ rush run -p @visactor/taro-vchart -s dev:lark
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
然后使用飞书开发者工具导入 `packages/taro-vchart/dist/lark` 目录即可。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/taro-vchart",
|
|
3
|
-
"version": "1.3.1
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Taro VChart 图表组件",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "lib/src/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@visactor/vchart": "1.3.1
|
|
34
|
+
"@visactor/vchart": "1.3.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@rushstack/eslint-patch": "~1.1.4",
|