crewx 0.8.3-rc.13 → 0.8.3-rc.14

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.
@@ -100,7 +100,7 @@ async function bootstrap() {
100
100
  app.setBaseViewsDir(staticPath);
101
101
  // Fallback to index.html for SPA routing
102
102
  app.use((req, res, next) => {
103
- if (!req.path.startsWith('/api/') && !req.path.startsWith('/mcp')) {
103
+ if (!req.path.startsWith('/api/') && !req.path.startsWith('/mcp') && !req.path.startsWith('/auth')) {
104
104
  res.sendFile('index.html', { root: staticPath });
105
105
  }
106
106
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewx",
3
- "version": "0.8.3-rc.13",
3
+ "version": "0.8.3-rc.14",
4
4
  "description": "CrewX — AI agent team dashboard with Electron UI and CLI (Web + Electron + Global CLI)",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -67,17 +67,17 @@
67
67
  "wink-nlp-utils": "^2.1.0",
68
68
  "yargs": "^17.7.0",
69
69
  "zod": "^3.22.0",
70
- "@crewx/cli": "0.8.3-rc.13",
71
- "@crewx/cron": "0.1.8",
70
+ "@crewx/cli": "0.8.3-rc.14",
72
71
  "@crewx/doc": "0.1.8",
72
+ "@crewx/cron": "0.1.8",
73
73
  "@crewx/knowledge-core": "0.1.6",
74
74
  "@crewx/memory": "0.1.10",
75
- "@crewx/search": "0.1.9",
76
- "@crewx/sdk": "0.8.3-rc.9",
77
75
  "@crewx/shared": "0.0.5",
76
+ "@crewx/sdk": "0.8.3-rc.10",
78
77
  "@crewx/wbs": "0.1.9",
79
- "@crewx/skill": "0.1.8",
80
- "@crewx/workflow": "0.3.17"
78
+ "@crewx/workflow": "0.3.17",
79
+ "@crewx/search": "0.1.9",
80
+ "@crewx/skill": "0.1.8"
81
81
  },
82
82
  "devDependencies": {
83
83
  "@ccusage/codex": "^0.0.1",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewx/cli",
3
- "version": "0.8.3-rc.13",
3
+ "version": "0.8.3-rc.14",
4
4
  "license": "UNLICENSED",
5
5
  "engines": {
6
6
  "node": ">=20.19.0"