claudekit-cli 3.41.4-dev.37 → 3.41.4-dev.38

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 +4 -2
  2. package/package.json +4 -2
package/dist/index.js CHANGED
@@ -60747,7 +60747,7 @@ var package_default;
60747
60747
  var init_package = __esm(() => {
60748
60748
  package_default = {
60749
60749
  name: "claudekit-cli",
60750
- version: "3.41.4-dev.37",
60750
+ version: "3.41.4-dev.38",
60751
60751
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
60752
60752
  type: "module",
60753
60753
  repository: {
@@ -60771,6 +60771,8 @@ var init_package = __esm(() => {
60771
60771
  "tauri:dev": "tauri dev",
60772
60772
  "tauri:build": "tauri build",
60773
60773
  "desktop:validate-config": "bun scripts/validate-desktop-bundle-config.ts",
60774
+ "desktop:validate-icons": "bun scripts/validate-desktop-icon-source.ts",
60775
+ "icons:regen": "./scripts/regen-desktop-icons.sh",
60774
60776
  dev: "bun run src/index.ts",
60775
60777
  "dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
60776
60778
  "dashboard:tauri": "bun run ui:dev:tauri",
@@ -60793,7 +60795,7 @@ var init_package = __esm(() => {
60793
60795
  "dev:quick": "./scripts/dev-quick-start.sh",
60794
60796
  "dev:all": "./scripts/dev-quick-start.sh all",
60795
60797
  metrics: "bun run scripts/workflow-metrics.ts",
60796
- validate: "bun run typecheck && bun run lint && bun run desktop:validate-config && bun test && bun run ui:test && bun run build",
60798
+ validate: "bun run typecheck && bun run lint && bun run desktop:validate-config && bun run desktop:validate-icons && bun test && bun run ui:test && bun run build",
60797
60799
  "install:hooks": "./.githooks/install.sh",
60798
60800
  prepare: `node -e "try{require('child_process').execSync('git rev-parse --git-dir',{stdio:'ignore'});require('child_process').execSync('bash .githooks/install.sh',{stdio:'inherit'})}catch(e){console.warn('[i] Hook install skipped:',e.message)}"`
60799
60801
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.41.4-dev.37",
3
+ "version": "3.41.4-dev.38",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {
@@ -24,6 +24,8 @@
24
24
  "tauri:dev": "tauri dev",
25
25
  "tauri:build": "tauri build",
26
26
  "desktop:validate-config": "bun scripts/validate-desktop-bundle-config.ts",
27
+ "desktop:validate-icons": "bun scripts/validate-desktop-icon-source.ts",
28
+ "icons:regen": "./scripts/regen-desktop-icons.sh",
27
29
  "dev": "bun run src/index.ts",
28
30
  "dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
29
31
  "dashboard:tauri": "bun run ui:dev:tauri",
@@ -46,7 +48,7 @@
46
48
  "dev:quick": "./scripts/dev-quick-start.sh",
47
49
  "dev:all": "./scripts/dev-quick-start.sh all",
48
50
  "metrics": "bun run scripts/workflow-metrics.ts",
49
- "validate": "bun run typecheck && bun run lint && bun run desktop:validate-config && bun test && bun run ui:test && bun run build",
51
+ "validate": "bun run typecheck && bun run lint && bun run desktop:validate-config && bun run desktop:validate-icons && bun test && bun run ui:test && bun run build",
50
52
  "install:hooks": "./.githooks/install.sh",
51
53
  "prepare": "node -e \"try{require('child_process').execSync('git rev-parse --git-dir',{stdio:'ignore'});require('child_process').execSync('bash .githooks/install.sh',{stdio:'inherit'})}catch(e){console.warn('[i] Hook install skipped:',e.message)}\""
52
54
  },