We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff69c0b commit 4b3966bCopy full SHA for 4b3966b
2 files changed
packages/build-plugin-lowcode/README.md
@@ -17,6 +17,22 @@ export interface SetterMap {
17
[SetterName: string]: string;
18
}
19
20
+export type Assets = {
21
+ package: string;
22
+ version: string;
23
+ urls: string[];
24
+ library: string;
25
+};
26
+// 示例
27
+// {
28
+// package: 'antd',
29
+// version: '4.17.3',
30
+// urls: [
31
+// 'https://g.alicdn.com/code/lib/antd/4.17.3/antd.min.js',
32
+// 'https://g.alicdn.com/code/lib/antd/4.17.3/antd.min.css',
33
+// ],
34
+// library: 'antd',
35
+// }
36
```
37
## 开发调试
38
### 组件开发
packages/build-plugin-lowcode/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@alifd/build-plugin-lowcode",
3
- "version": "0.4.5",
+ "version": "0.4.6",
4
"description": "build plugin for component-to-lowcode",
5
"main": "src/index.js",
6
"keywords": [
0 commit comments