Skip to content

Commit 702c24f

Browse files
committed
chore: minor code imprs
1 parent ec82c23 commit 702c24f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/cli.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import { startRepl } from './repl.ts'
3434
import { randomId } from './util.ts'
3535
import { transformMarkdown } from './md.ts'
3636
import { createRequire, type minimist } from './vendor.ts'
37-
import { unlinkSync } from 'fs'
3837

3938
const EXT = '.mjs'
4039
const EXT_RE = /^\.[mc]?[jt]sx?$/
@@ -130,17 +129,15 @@ async function runScript(
130129
): Promise<void> {
131130
let nm = ''
132131
const rmTemp = () => {
133-
const rmOpts = { force: true, recursive: true }
134-
fs.rmSync(tempPath, rmOpts)
135-
nm && fs.rmSync(nm, rmOpts)
132+
fs.rmSync(tempPath, { force: true, recursive: true })
133+
nm && fs.rmSync(nm, { force: true, recursive: true })
136134
}
137135
try {
138136
if (tempPath) {
139137
scriptPath = tempPath
140138
await fs.writeFile(tempPath, script)
141139
}
142140
const cwd = path.dirname(scriptPath)
143-
144141
if (typeof argv.preferLocal === 'string') {
145142
nm = linkNodeModules(cwd, argv.preferLocal)
146143
}

0 commit comments

Comments
 (0)