sliccy 1.30.2 → 1.31.1
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.
|
@@ -934,7 +934,7 @@ async function main() {
|
|
|
934
934
|
const uiDir = resolve(__dirname, '..', 'ui');
|
|
935
935
|
app.use(express.static(uiDir));
|
|
936
936
|
// SPA fallback — serve index.html for all non-file routes
|
|
937
|
-
app.get('*', (_req, res) => {
|
|
937
|
+
app.get('/{*path}', (_req, res) => {
|
|
938
938
|
res.sendFile(join(uiDir, 'index.html'));
|
|
939
939
|
});
|
|
940
940
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sliccy",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.1",
|
|
4
4
|
"description": "Browser-based coding agent with thin CLI server",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"prepare": "husky"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"express": "^
|
|
50
|
+
"express": "^5.0.0",
|
|
51
51
|
"pyodide": "0.29.3",
|
|
52
52
|
"ws": "^8.18.0"
|
|
53
53
|
},
|