claudekit-cli 3.41.4-dev.47 → 3.41.4-dev.49
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 +19 -0
- package/cli-manifest.json +35 -8
- package/dist/index.js +891 -125
- package/dist/ui/assets/index-CRtJwrzd.css +1 -0
- package/dist/ui/assets/index-DyvVqUTe.js +311 -0
- package/dist/ui/index.html +2 -2
- package/package.json +4 -1
- package/dist/ui/assets/index-CKG4dpEV.js +0 -311
- package/dist/ui/assets/index-D3aRuZaq.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-DyvVqUTe.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-CRtJwrzd.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.49",
|
|
4
4
|
"description": "CLI tool for bootstrapping and updating ClaudeKit projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
"test:integration": "CK_RUN_CLI_INTEGRATION=1 bun test tests/integration/cli.test.ts",
|
|
44
44
|
"test:watch": "bun test --watch",
|
|
45
45
|
"test:quick": "./scripts/dev-quick-start.sh test",
|
|
46
|
+
"test:e2e": "playwright test --config=playwright.config.ts",
|
|
47
|
+
"test:e2e:ui": "playwright test --ui --config=playwright.config.ts",
|
|
46
48
|
"lint": "biome check .",
|
|
47
49
|
"lint:fix": "biome check --fix .",
|
|
48
50
|
"lint:fix-unsafe": "biome check --fix --unsafe .",
|
|
@@ -101,6 +103,7 @@
|
|
|
101
103
|
},
|
|
102
104
|
"devDependencies": {
|
|
103
105
|
"@biomejs/biome": "^1.9.4",
|
|
106
|
+
"@playwright/test": "^1.59.1",
|
|
104
107
|
"@semantic-release/changelog": "^6.0.3",
|
|
105
108
|
"@semantic-release/git": "^10.0.1",
|
|
106
109
|
"@tauri-apps/cli": "^2",
|