@wagq/wa-cli 0.6.37-beta.0 → 0.6.37
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.
|
@@ -4,11 +4,11 @@ const changesetDoc = (mode) => {
|
|
|
4
4
|
let bins = [];
|
|
5
5
|
switch (mode) {
|
|
6
6
|
case "dev":
|
|
7
|
-
bins.push("echo 准备启动文档预览
|
|
7
|
+
bins.push("echo 准备启动文档预览 @author: wa 1224362143@qq.com");
|
|
8
8
|
bins.push("npx dumi dev");
|
|
9
9
|
break;
|
|
10
10
|
case "doc":
|
|
11
|
-
bins.push("echo 准备构建文档
|
|
11
|
+
bins.push("echo 准备构建文档 @author: wa 1224362143@qq.com");
|
|
12
12
|
bins.push("npx dumi build");
|
|
13
13
|
break;
|
|
14
14
|
case "changeset":
|
|
@@ -18,15 +18,15 @@ const changesetDoc = (mode) => {
|
|
|
18
18
|
bins.push("npx changeset version");
|
|
19
19
|
break;
|
|
20
20
|
case "turboBuild":
|
|
21
|
-
bins.push("echo 准备打包
|
|
21
|
+
bins.push("echo 准备打包 @author: wa 1224362143@qq.com");
|
|
22
22
|
bins.push("npx turbo build");
|
|
23
23
|
break;
|
|
24
24
|
case "enterBeta":
|
|
25
|
-
bins.push("echo 进入beta模式
|
|
25
|
+
bins.push("echo 进入beta模式 @author: wa 1224362143@qq.com");
|
|
26
26
|
bins.push("npx changeset pre enter beta");
|
|
27
27
|
break;
|
|
28
28
|
case "exitBeta":
|
|
29
|
-
bins.push("echo 退出beta模式
|
|
29
|
+
bins.push("echo 退出beta模式 @author: wa 1224362143@qq.com");
|
|
30
30
|
bins.push("npx changeset pre exit");
|
|
31
31
|
break;
|
|
32
32
|
}
|