webmux 0.8.0 → 0.10.0

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 (3) hide show
  1. package/backend/dist/server.js +2645 -2559
  2. package/bin/webmux.js +10183 -42
  3. package/package.json +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webmux",
3
- "version": "0.8.0",
3
+ "version": "0.10.0",
4
4
  "description": "Web dashboard for workmux — browser UI with embedded terminals, PR monitoring, and CI integration",
5
5
  "type": "module",
6
6
  "repository": {
@@ -28,8 +28,8 @@
28
28
  "start": "bun bin/webmux.js",
29
29
  "build": "cd frontend && bun run build && cd .. && bun build backend/src/server.ts --target=bun --outfile=backend/dist/server.js && bun build bin/src/webmux.ts --target=bun --outfile=bin/webmux.js",
30
30
  "prepublishOnly": "bun run build",
31
- "test": "bun run --cwd backend test && bun run --cwd frontend test",
32
- "test:coverage": "bun run --cwd backend test --coverage && bun run --cwd frontend test:coverage"
31
+ "test": "bun run --cwd backend test && bun test bin/src && bun run --cwd frontend test",
32
+ "test:coverage": "bun run --cwd backend test --coverage && bun test --coverage bin/src && bun run --cwd frontend test:coverage"
33
33
  },
34
34
  "files": [
35
35
  "bin/webmux.js",