@devflow-tools/plugin-taro 0.17.4 → 0.17.6
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 +62 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
# @devflow-tools/plugin-taro
|
|
2
2
|
|
|
3
|
-
Taro 跨端专家插件 —
|
|
3
|
+
> Taro 跨端专家插件 — 多端适配、小程序调试、性能优化、兼容方案。(v0.17.6)
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## 安装
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install @devflow-tools/plugin-taro
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## 使用
|
|
12
|
+
|
|
13
|
+
插件通过 DevFlow/Claude Code 使用:
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
/devflow:taro <你的任务>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## 能力与知识源
|
|
20
|
+
|
|
11
21
|
## MCP Tools
|
|
12
22
|
|
|
13
23
|
| Tool | 说明 | 关键参数 |
|
|
@@ -29,12 +39,57 @@ npm install @devflow-tools/plugin-taro
|
|
|
29
39
|
- 样式单位统一使用 `px`(Taro 自动转换)
|
|
30
40
|
- 使用 `@tarojs/plugin-html` 支持 HTML 标签
|
|
31
41
|
|
|
32
|
-
## Usage
|
|
33
42
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
/
|
|
37
|
-
|
|
43
|
+
## 兼容性
|
|
44
|
+
|
|
45
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
46
|
+
|
|
47
|
+
## 相关链接
|
|
48
|
+
|
|
49
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
50
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
MIT
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## 兼容性
|
|
58
|
+
|
|
59
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
60
|
+
|
|
61
|
+
## 相关链接
|
|
62
|
+
|
|
63
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
64
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
MIT
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
## 兼容性
|
|
72
|
+
|
|
73
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
74
|
+
|
|
75
|
+
## 相关链接
|
|
76
|
+
|
|
77
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
78
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
79
|
+
|
|
80
|
+
## License
|
|
81
|
+
|
|
82
|
+
MIT
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
## 兼容性
|
|
86
|
+
|
|
87
|
+
需要 Node.js >= 18,并与同版本 @devflow-tools/sdk、DevFlow CLI 配合使用。插件不是独立 HTTP 服务。
|
|
88
|
+
|
|
89
|
+
## 相关链接
|
|
90
|
+
|
|
91
|
+
- [仓库](https://github.com/shilongfeicool/dev-flow)
|
|
92
|
+
- [插件目录](https://github.com/shilongfeicool/dev-flow/tree/main/plugins)
|
|
38
93
|
|
|
39
94
|
## License
|
|
40
95
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devflow-tools/plugin-taro",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"clean": "rm -rf dist"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@devflow-tools/sdk": "0.17.
|
|
20
|
+
"@devflow-tools/sdk": "0.17.6"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"typescript": "^5.5.0",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "669fea3aa72aa3fde14ed50d24c1fec4dfac088f"
|
|
30
30
|
}
|