Commit 55d13eb

Anton Golub <antongolub@antongolub.com>
2025-01-07 20:04:03
fix(cli): file protocol check (#1064)
1 parent d969840
Changed files (2)
src/cli.ts
@@ -131,7 +131,7 @@ export async function main() {
     await scriptFromHttp(firstArg, argv.ext)
     return
   }
-  const filepath = firstArg.startsWith('file:///')
+  const filepath = firstArg.startsWith('file://')
     ? url.fileURLToPath(firstArg)
     : path.resolve(firstArg)
   await importPath(filepath)
src/repl.ts
@@ -19,7 +19,9 @@ import { inspect } from 'node:util'
 import { ProcessOutput, defaults } from './core.js'
 import { chalk } from './vendor-core.js'
 
-export async function startRepl() {
+const HISTORY = path.join(os.homedir(), '.zx_repl_history')
+
+export async function startRepl(history = HISTORY) {
   defaults.verbose = false
   const r = repl.start({
     prompt: chalk.greenBright.bold('❯ '),
@@ -32,5 +34,5 @@ export async function startRepl() {
       return inspect(output, { colors: true })
     },
   })
-  r.setupHistory(path.join(os.homedir(), '.zx_repl_history'), () => {})
+  r.setupHistory(history, () => {})
 }