@mobius-os/mobius 0.3.1 → 0.3.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.
package/bin/mobius-tui.js CHANGED
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'node:url'
5
5
  import { dirname, join } from 'node:path'
6
6
 
7
7
  const here = dirname(fileURLToPath(import.meta.url))
8
- const tsx = join(here, '..', 'node_modules', '.bin', 'tsx')
8
+ const tsx = join(here, '..', 'node_modules', '.bin', process.platform === 'win32' ? 'tsx.cmd' : 'tsx')
9
9
  const entry = join(here, '..', 'src', 'main.tsx')
10
10
 
11
11
  const result = spawnSync(tsx, [entry], { stdio: 'inherit' })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobius-os/mobius",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "description": "Mobius terminal client. Reuses Mobius frontend TypeScript types and jsonl entry shapes.",
6
6
  "bin": {