@wagq/wa-cli 0.6.55 → 0.6.57

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/config/command.js CHANGED
@@ -170,7 +170,7 @@ const command = [
170
170
  action: checkBranch,
171
171
  },
172
172
  {
173
- name: "clearLibrary",
173
+ name: "clearLibrary [dirPath]",
174
174
  alias: "cle",
175
175
  description: "删除目录下node_modules与dist,如果有packages目录则继续下钻",
176
176
  action: clear,
@@ -32,11 +32,11 @@ const changesetDoc = (mode, argv) => {
32
32
  break;
33
33
  case "pub":
34
34
  bins.push("echo 准备发布正式包 @author: wa 1224362143@qq.com");
35
- bins.push(`npx changeset publish --registry=${registry}`);
35
+ bins.push(`npx changeset publish`);
36
36
  break;
37
37
  case "pubBeta":
38
38
  bins.push("echo 准备发布beta包 @author: wa 1224362143@qq.com");
39
- bins.push(`npx changeset publish --tag beta --registry=${registry}`);
39
+ bins.push(`npx changeset publish --tag beta`);
40
40
  break;
41
41
  default:
42
42
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wagq/wa-cli",
3
- "version": "0.6.55",
3
+ "version": "0.6.57",
4
4
  "description": "wa的脚手架",
5
5
  "main": "index.js",
6
6
  "scripts": {