midsomar 0.1.16 → 0.1.19

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/dist/index.js +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -51,7 +51,9 @@ async function cmdWeb(args) {
51
51
  }
52
52
  process.stdout.write("starting...\n");
53
53
  const engine = await startEngine({ password });
54
- process.stdout.write(`\n engine: ${engine.url}\n`);
54
+ if (process.env.MIDSOMAR_DEBUG) {
55
+ process.stdout.write(`\n engine: ${engine.url}\n`);
56
+ }
55
57
  const uiDir = new URL("../web-ui", import.meta.url).pathname;
56
58
  const ui = await serveUI({
57
59
  uiDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "midsomar",
3
- "version": "0.1.16",
3
+ "version": "0.1.19",
4
4
  "description": "AI coding agent — open-source, bring your own API key",
5
5
  "type": "module",
6
6
  "bin": {