@jaabiri/bmad-studio 0.2.1 → 0.2.2

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1764,9 +1764,9 @@ async function createServer(config) {
1764
1764
  }));
1765
1765
  if (config.uiDistPath && existsSync(config.uiDistPath)) {
1766
1766
  debug6("Serving UI from %s", config.uiDistPath);
1767
- app.use(express.static(config.uiDistPath));
1767
+ app.use(express.static(config.uiDistPath, { dotfiles: "allow" }));
1768
1768
  app.use((_req, res) => {
1769
- res.sendFile(join8(config.uiDistPath, "index.html"));
1769
+ res.sendFile(join8(config.uiDistPath, "index.html"), { dotfiles: "allow" });
1770
1770
  });
1771
1771
  }
1772
1772
  const server = http.createServer(app);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaabiri/bmad-studio",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "description": "BMAD Studio — Visual workflow dashboard for the BMAD Method",
6
6
  "bin": {