@coze/cli 0.3.0 → 0.3.1-alpha.ff45f9

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.
@@ -18,7 +18,7 @@ try {
18
18
  const { spawnSync } = require('child_process');
19
19
 
20
20
  // CI 环境不执行同步(不可控环境不写家目录)
21
- // 开发仓库内的安装(rush update / pnpm install)也跳过:发布包不含 src/
21
+ // 开发仓库内的依赖更新(rush update / pnpm add 等)也跳过:发布包不含 src/
22
22
  if (process.env.CI || existsSync(join(__dirname, '..', 'src'))) {
23
23
  process.exit(0);
24
24
  }