Skip to content

Commit 731dc58

Browse files
liujupingJackLian
authored andcommitted
fix: lerna version to 4.0.0
1 parent 88008a7 commit 731dc58

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

packages/types/src/shell/type/node-schema.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,41 @@ import { IPublicTypeCompositeValue, IPublicTypePropsMap, IPublicTypeNodeData } f
55
* 搭建基础协议 - 单个组件树节点描述
66
*/
77
export interface IPublicTypeNodeSchema {
8+
89
id?: string;
10+
911
/**
1012
* 组件名称 必填、首字母大写
1113
*/
1214
componentName: string;
15+
1316
/**
1417
* 组件属性对象
1518
*/
1619
props?: {
1720
children?: IPublicTypeNodeData | IPublicTypeNodeData[];
1821
} & IPublicTypePropsMap; // | PropsList;
1922

20-
/**
21-
* 组件属性对象
22-
*/
23-
leadingComponents?: string;
2423
/**
2524
* 渲染条件
2625
*/
2726
condition?: IPublicTypeCompositeValue;
27+
2828
/**
2929
* 循环数据
3030
*/
3131
loop?: IPublicTypeCompositeValue;
32+
3233
/**
3334
* 循环迭代对象、索引名称 ["item", "index"]
3435
*/
3536
loopArgs?: [string, string];
37+
3638
/**
3739
* 子节点
3840
*/
3941
children?: IPublicTypeNodeData | IPublicTypeNodeData[];
42+
4043
/**
4144
* 是否锁定
4245
*/

scripts/setup-skip-build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/usr/bin/env bash
22

33
rm -rf node_modules package-lock.json yarn.lock
4+
5+
npm i lerna@4.0.0
6+
47
lerna clean -y
58
find ./packages -type f -name "package-lock.json" -exec rm -f {} \;
69

0 commit comments

Comments
 (0)