claudekit-cli 3.33.0-dev.5 → 3.33.0-dev.7

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 +3 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -45375,7 +45375,7 @@ var package_default;
45375
45375
  var init_package = __esm(() => {
45376
45376
  package_default = {
45377
45377
  name: "claudekit-cli",
45378
- version: "3.33.0-dev.5",
45378
+ version: "3.33.0-dev.7",
45379
45379
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
45380
45380
  type: "module",
45381
45381
  repository: {
@@ -47625,6 +47625,7 @@ function serveStatic(app) {
47625
47625
  return;
47626
47626
  }
47627
47627
  app.use(import_express.default.static(uiDistPath, {
47628
+ dotfiles: "allow",
47628
47629
  setHeaders: (res, filePath) => {
47629
47630
  if (filePath.endsWith(".js")) {
47630
47631
  res.setHeader("Content-Type", "application/javascript");
@@ -47642,7 +47643,7 @@ function serveStatic(app) {
47642
47643
  if (req.path.startsWith("/assets/") || req.path.match(/\.(js|css|ico|png|jpg|svg|woff2?)$/)) {
47643
47644
  return next();
47644
47645
  }
47645
- res.sendFile(join30(uiDistPath, "index.html"));
47646
+ res.sendFile(join30(uiDistPath, "index.html"), { dotfiles: "allow" });
47646
47647
  });
47647
47648
  logger.debug(`Serving static files from ${uiDistPath}`);
47648
47649
  }
@@ -77239,17 +77240,10 @@ var TRANSFORMABLE_EXTENSIONS = new Set([
77239
77240
  ]);
77240
77241
  var COMMAND_ROOTS = [
77241
77242
  "plan",
77242
- "fix",
77243
- "code",
77244
77243
  "review",
77245
- "cook",
77246
- "brainstorm",
77247
- "integrate",
77248
77244
  "bootstrap",
77249
77245
  "worktree",
77250
- "scout",
77251
77246
  "test",
77252
- "debug",
77253
77247
  "preview",
77254
77248
  "kanban",
77255
77249
  "journal",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.33.0-dev.5",
3
+ "version": "3.33.0-dev.7",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {