@qomicex/cli 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -54,7 +54,7 @@ qomicex v${VERSION} — Qomicex 插件生态 CLI
54
54
  manifest 合法性 + 权限最小化 + 长循环告警 + 签名检查
55
55
  qomicex bump <major|minor|patch> [--version <v>]
56
56
  递增 manifest.json 版本号(或 --version 直接指定)
57
- qomicex publish [--key <k>] [--slug <s>] [--changelog <c>] [--api <url>] [--org-id <id>] [--package <f>] [--yes]
57
+ qomicex publish [--key <k>] [--slug <s>] [--changelog <c>] [--api <url>] [--org-id <id>] [--package <f>] [--skip-build] [--yes]
58
58
  设备流登录 → 注册签名公钥 → 签名 → 上传到商店
59
59
  qomicex --help | -h 显示帮助
60
60
  qomicex --version | -v 显示版本
@@ -110,6 +110,7 @@ async function main() {
110
110
  orgId: typeof options['org-id'] === 'string' ? options['org-id'] : undefined,
111
111
  package: typeof options['package'] === 'string' ? options['package'] : undefined,
112
112
  yes: options['yes'] === true,
113
+ skipBuild: options['skip-build'] === true,
113
114
  });
114
115
  break;
115
116
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qomicex/cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },