@gbasin/agentboard 0.1.0 → 0.1.2

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 (2) hide show
  1. package/bin/agentboard +2 -0
  2. package/package.json +5 -5
package/bin/agentboard CHANGED
@@ -53,6 +53,8 @@ try {
53
53
  stdio: "inherit",
54
54
  env: {
55
55
  ...process.env,
56
+ // Compiled binary can't use pino transports (worker_threads + dynamic require)
57
+ NODE_ENV: process.env.NODE_ENV || "production",
56
58
  // Tell the server where to find dist/client relative to the platform package
57
59
  AGENTBOARD_STATIC_DIR: join(packageRoot, "dist", "client"),
58
60
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbasin/agentboard",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "description": "A terminal dashboard for tracking agent coding sessions",
6
6
  "author": "gbasin",
@@ -20,10 +20,10 @@
20
20
  "bun": ">=1.3.6"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@gbasin/agentboard-darwin-arm64": "0.1.0",
24
- "@gbasin/agentboard-darwin-x64": "0.1.0",
25
- "@gbasin/agentboard-linux-x64": "0.1.0",
26
- "@gbasin/agentboard-linux-arm64": "0.1.0"
23
+ "@gbasin/agentboard-darwin-arm64": "0.1.2",
24
+ "@gbasin/agentboard-darwin-x64": "0.1.2",
25
+ "@gbasin/agentboard-linux-x64": "0.1.2",
26
+ "@gbasin/agentboard-linux-arm64": "0.1.2"
27
27
  },
28
28
  "scripts": {
29
29
  "dev": "concurrently -k \"bun run dev:server\" \"bun run dev:client\"",