@hachej/boring-ui-cli 0.1.14 → 0.1.16
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/server/cli.js +2 -2
- package/package.json +4 -4
package/dist/server/cli.js
CHANGED
|
@@ -63,8 +63,7 @@ async function registerStatic(app, publicDir) {
|
|
|
63
63
|
const { default: fastifyStatic } = await import("@fastify/static");
|
|
64
64
|
await app.register(fastifyStatic, {
|
|
65
65
|
root: publicDir,
|
|
66
|
-
prefix: "/"
|
|
67
|
-
wildcard: false
|
|
66
|
+
prefix: "/"
|
|
68
67
|
});
|
|
69
68
|
app.setNotFoundHandler(async (req, reply) => {
|
|
70
69
|
if (req.url.startsWith("/api/")) {
|
|
@@ -301,5 +300,6 @@ async function runCli(options) {
|
|
|
301
300
|
});
|
|
302
301
|
}
|
|
303
302
|
export {
|
|
303
|
+
registerStatic,
|
|
304
304
|
runCli
|
|
305
305
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-ui-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Turn an agent into an app",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"@fastify/static": "^8.0.0",
|
|
16
16
|
"fastify": "^5.4.0",
|
|
17
17
|
"lucide-react": "^1.8.0",
|
|
18
|
-
"@hachej/boring-agent": "0.1.
|
|
19
|
-
"@hachej/boring-
|
|
20
|
-
"@hachej/boring-
|
|
18
|
+
"@hachej/boring-agent": "0.1.16",
|
|
19
|
+
"@hachej/boring-workspace": "0.1.16",
|
|
20
|
+
"@hachej/boring-ui-kit": "0.1.16"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@tailwindcss/vite": "^4.0.0",
|