claudekit-cli 3.41.4-dev.25 → 3.41.4-dev.26
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/README.md +1 -0
- package/dist/index.js +3 -2
- package/dist/ui/assets/index-BxikjjQn.css +1 -0
- package/dist/ui/assets/index-D0FJ8Qi4.js +287 -0
- package/dist/ui/index.html +2 -2
- package/package.json +3 -2
- package/dist/ui/assets/index-BHZ1pAhp.js +0 -287
- package/dist/ui/assets/index-h0qoQP7j.css +0 -1
package/dist/ui/index.html
CHANGED
|
@@ -71,9 +71,9 @@
|
|
|
71
71
|
background: var(--dash-text-muted);
|
|
72
72
|
}
|
|
73
73
|
</style>
|
|
74
|
-
<script type="module" crossorigin src="/assets/index-
|
|
74
|
+
<script type="module" crossorigin src="/assets/index-D0FJ8Qi4.js"></script>
|
|
75
75
|
<link rel="modulepreload" crossorigin href="/assets/vendor-BkC4CYzM.js">
|
|
76
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
76
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BxikjjQn.css">
|
|
77
77
|
</head>
|
|
78
78
|
<body class="bg-dash-bg text-dash-text">
|
|
79
79
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudekit-cli",
|
|
3
|
-
"version": "3.41.4-dev.
|
|
3
|
+
"version": "3.41.4-dev.26",
|
|
4
4
|
"description": "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"tauri:build": "tauri build",
|
|
26
26
|
"dev": "bun run src/index.ts",
|
|
27
27
|
"dashboard:dev": "cd src/ui && bun install --silent && cd ../.. && bun run src/index.ts config ui --dev",
|
|
28
|
-
"dashboard:tauri": "
|
|
28
|
+
"dashboard:tauri": "bun run ui:dev:tauri",
|
|
29
|
+
"ui:dev:tauri": "cd src/ui && bun install --silent && bun run dev -- --host 127.0.0.1 --port 3456 --strictPort",
|
|
29
30
|
"ui:build": "cd src/ui && bun install --silent && bun run build",
|
|
30
31
|
"ui:test": "cd src/ui && bun install --silent && bun run test",
|
|
31
32
|
"ui:test:plans": "cd src/ui && bun install --silent && bunx vitest run src/hooks/__tests__/use-plans-dashboard.vitest.ts src/pages/__tests__/PlansPage.vitest.tsx src/pages/__tests__/PlanDetailPage.vitest.tsx",
|