wmdev 0.2.2 → 0.3.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 +3 -3
- package/backend/dist/server.js +481 -53
- package/bin/wmdev.js +3 -3
- package/frontend/dist/assets/index-D9tls-CM.css +32 -0
- package/frontend/dist/assets/index-Dp6OOEt3.js +25 -0
- package/frontend/dist/index.html +7 -2
- package/package.json +3 -4
- package/frontend/dist/assets/index-CRpS9q83.js +0 -25
- package/frontend/dist/assets/index-Cy7rpGPt.css +0 -32
package/frontend/dist/index.html
CHANGED
|
@@ -6,9 +6,14 @@
|
|
|
6
6
|
name="viewport"
|
|
7
7
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
|
|
8
8
|
/>
|
|
9
|
+
<link
|
|
10
|
+
rel="icon"
|
|
11
|
+
type="image/svg+xml"
|
|
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
|
+
/>
|
|
9
14
|
<title>Dev Dashboard</title>
|
|
10
|
-
<script type="module" crossorigin src="/assets/index-
|
|
11
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
15
|
+
<script type="module" crossorigin src="/assets/index-Dp6OOEt3.js"></script>
|
|
16
|
+
<link rel="stylesheet" crossorigin href="/assets/index-D9tls-CM.css">
|
|
12
17
|
</head>
|
|
13
18
|
<body>
|
|
14
19
|
<div id="app"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wmdev",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.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": {
|
|
@@ -26,9 +26,8 @@
|
|
|
26
26
|
"scripts": {
|
|
27
27
|
"dev": "bash dev.sh",
|
|
28
28
|
"start": "bun bin/wmdev.js",
|
|
29
|
-
"build": "cd frontend && bun run build",
|
|
30
|
-
"
|
|
31
|
-
"prepublishOnly": "bun run build && bun run build:backend",
|
|
29
|
+
"build": "cd frontend && bun run build && cd .. && bun build backend/src/server.ts --target=bun --outfile=backend/dist/server.js",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
32
31
|
"test": "bun run --cwd backend test && bun run --cwd frontend test",
|
|
33
32
|
"test:coverage": "bun run --cwd backend test --coverage && bun run --cwd frontend test:coverage"
|
|
34
33
|
},
|