File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -128,10 +128,10 @@ async function runScript(
128
128
scriptPath : string ,
129
129
tempPath : string
130
130
) : Promise < void > {
131
- let nm = ''
131
+ let nmLink = ''
132
132
const rmTemp = ( ) => {
133
133
fs . rmSync ( tempPath , { force : true , recursive : true } )
134
- nm && fs . rmSync ( nm , { force : true , recursive : true } )
134
+ nmLink && fs . rmSync ( nmLink , { force : true , recursive : true } )
135
135
}
136
136
try {
137
137
if ( tempPath ) {
@@ -140,7 +140,7 @@ async function runScript(
140
140
}
141
141
const cwd = path . dirname ( scriptPath )
142
142
if ( typeof argv . preferLocal === 'string' ) {
143
- nm = linkNodeModules ( cwd , argv . preferLocal )
143
+ nmLink = linkNodeModules ( cwd , argv . preferLocal )
144
144
}
145
145
if ( argv . install ) {
146
146
await installDeps ( parseDeps ( script ) , cwd , argv . registry )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ global.AbortController = global.AbortController || AbortController
36
36
37
37
export const createRequire = _createRequire as unknown as (
38
38
filename : string | URL
39
- ) => NodeRequire
39
+ ) => NodeJS . Require
40
40
41
41
export const globbyModule = {
42
42
convertPathToPattern,
You can’t perform that action at this time.
0 commit comments