litmus-ai 1.0.5 → 1.0.6

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/cli.js +1 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -92948,7 +92948,7 @@ function App() {
92948
92948
  }, undefined, true, undefined, this);
92949
92949
  }
92950
92950
  var renderer = await createCliRenderer();
92951
- if (true) {
92951
+ if (process.env.LITMUS_DEV_CONSOLE === "1") {
92952
92952
  renderer.console.toggle();
92953
92953
  }
92954
92954
  createRoot(renderer).render(/* @__PURE__ */ import_jsx_dev_runtime2.jsxDEV(App, {}, undefined, false, undefined, this));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litmus-ai",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Multi-model LLM eval CLI tool",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
@@ -11,7 +11,7 @@
11
11
  "dist"
12
12
  ],
13
13
  "scripts": {
14
- "dev": "LITMUS_DB_PATH=./data/Litmus.db bun run --watch src/index.tsx",
14
+ "dev": "LITMUS_DB_PATH=./data/Litmus.db LITMUS_DEV_CONSOLE=1 bun run --watch src/index.tsx",
15
15
  "build": "bun build src/index.tsx --outdir dist --target bun --entry-naming cli.js && perl -0777 -pi -e 's/^#!.*\\n/#!\\/usr\\/bin\\/env bun\\n/' dist/cli.js",
16
16
  "prepublishOnly": "bun run build"
17
17
  },