File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ import { startRepl } from './repl.ts'
34
34
import { randomId } from './util.ts'
35
35
import { transformMarkdown } from './md.ts'
36
36
import { createRequire , type minimist } from './vendor.ts'
37
- import { unlinkSync } from 'fs'
38
37
39
38
const EXT = '.mjs'
40
39
const EXT_RE = / ^ \. [ m c ] ? [ j t ] s x ? $ /
@@ -130,17 +129,15 @@ async function runScript(
130
129
) : Promise < void > {
131
130
let nm = ''
132
131
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 } )
136
134
}
137
135
try {
138
136
if ( tempPath ) {
139
137
scriptPath = tempPath
140
138
await fs . writeFile ( tempPath , script )
141
139
}
142
140
const cwd = path . dirname ( scriptPath )
143
-
144
141
if ( typeof argv . preferLocal === 'string' ) {
145
142
nm = linkNodeModules ( cwd , argv . preferLocal )
146
143
}
You can’t perform that action at this time.
0 commit comments