webmux 0.7.3 → 0.9.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.
- package/README.md +6 -0
- package/backend/dist/server.js +2585 -2522
- package/bin/webmux.js +10176 -75
- package/frontend/dist/assets/{index-DeLoWUbI.js → index-Cu0O1qK6.js} +11 -11
- package/frontend/dist/index.html +1 -1
- package/package.json +3 -3
package/frontend/dist/index.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' rx='6' fill='%230d1117'/%3E%3C!-- agent head --%3E%3Crect x='7' y='8' width='18' height='14' rx='3' fill='none' stroke='%2358a6ff' stroke-width='1.8'/%3E%3C!-- eyes --%3E%3Ccircle cx='13' cy='15' r='1.8' fill='%2358a6ff'/%3E%3Ccircle cx='19' cy='15' r='1.8' fill='%2358a6ff'/%3E%3C!-- antenna --%3E%3Cline x1='16' y1='8' x2='16' y2='5' stroke='%2358a6ff' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='16' cy='4' r='1.2' fill='%2358a6ff'/%3E%3C!-- lightning bolt --%3E%3Cpolygon points='18,22 14,27 16,27 14,31 20,25 17,25 19,22' fill='%23f0c000'/%3E%3C/svg%3E"
|
|
13
13
|
/>
|
|
14
14
|
<title>Dev Dashboard</title>
|
|
15
|
-
<script type="module" crossorigin src="/assets/index-
|
|
15
|
+
<script type="module" crossorigin src="/assets/index-Cu0O1qK6.js"></script>
|
|
16
16
|
<link rel="stylesheet" crossorigin href="/assets/index-BQ3MC-qW.css">
|
|
17
17
|
</head>
|
|
18
18
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webmux",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.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",
|