Skip to content

Commit f184fa0

Browse files
committed
chore: minor syntax imprs
1 parent a38be55 commit f184fa0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/cli.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ async function runScript(
128128
scriptPath: string,
129129
tempPath: string
130130
): Promise<void> {
131-
let nm = ''
131+
let nmLink = ''
132132
const rmTemp = () => {
133133
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 })
135135
}
136136
try {
137137
if (tempPath) {
@@ -140,7 +140,7 @@ async function runScript(
140140
}
141141
const cwd = path.dirname(scriptPath)
142142
if (typeof argv.preferLocal === 'string') {
143-
nm = linkNodeModules(cwd, argv.preferLocal)
143+
nmLink = linkNodeModules(cwd, argv.preferLocal)
144144
}
145145
if (argv.install) {
146146
await installDeps(parseDeps(script), cwd, argv.registry)

src/vendor-extra.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ global.AbortController = global.AbortController || AbortController
3636

3737
export const createRequire = _createRequire as unknown as (
3838
filename: string | URL
39-
) => NodeRequire
39+
) => NodeJS.Require
4040

4141
export const globbyModule = {
4242
convertPathToPattern,

0 commit comments

Comments
 (0)