@clickzetta/cz-cli 0.5.15 → 0.5.16

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.
@@ -78,9 +78,9 @@ async function main() {
78
78
  }
79
79
 
80
80
  // Clear .builtin/ entirely then re-populate with all bundled skills
81
+ fs.rmSync(builtinDest, { recursive: true, force: true });
82
+ fs.mkdirSync(builtinDest, { recursive: true });
81
83
  if (fs.existsSync(skillsSrc)) {
82
- fs.rmSync(builtinDest, { recursive: true, force: true });
83
- fs.mkdirSync(builtinDest, { recursive: true });
84
84
  const skills = fs.readdirSync(skillsSrc).filter((name) => fs.statSync(path.join(skillsSrc, name)).isDirectory());
85
85
  for (const name of skills) {
86
86
  fs.cpSync(path.join(skillsSrc, name), path.join(builtinDest, name), { recursive: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickzetta/cz-cli",
3
- "version": "0.5.15",
3
+ "version": "0.5.16",
4
4
  "description": "AI-Agent-friendly CLI for ClickZetta Lakehouse",
5
5
  "bin": {
6
6
  "cz-cli": "bin/run.js",
@@ -13,11 +13,11 @@
13
13
  "bin/"
14
14
  ],
15
15
  "optionalDependencies": {
16
- "@clickzetta/cz-cli-darwin-arm64": "0.5.15",
17
- "@clickzetta/cz-cli-darwin-x64": "0.5.15",
18
- "@clickzetta/cz-cli-linux-arm64": "0.5.15",
19
- "@clickzetta/cz-cli-linux-x64": "0.5.15",
20
- "@clickzetta/cz-cli-win32-x64": "0.5.15"
16
+ "@clickzetta/cz-cli-darwin-arm64": "0.5.16",
17
+ "@clickzetta/cz-cli-darwin-x64": "0.5.16",
18
+ "@clickzetta/cz-cli-linux-arm64": "0.5.16",
19
+ "@clickzetta/cz-cli-linux-x64": "0.5.16",
20
+ "@clickzetta/cz-cli-win32-x64": "0.5.16"
21
21
  },
22
22
  "license": "MIT",
23
23
  "repository": {