claudekit-cli 3.33.0-dev.6 → 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.
- package/dist/index.js +3 -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.
|
|
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
|
}
|