Skip to content

Commit 9936862

Browse files
committed
fmt meh
1 parent 454cede commit 9936862

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib_dev/process.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ export function setup(cwd = process.cwd()) {
255255
// Use node to run npm directly since npm might not be in PATH
256256
const nodePath = process.execPath;
257257
const nodeDir = path.dirname(nodePath);
258-
const npmPath = path.join(nodeDir, 'npm');
259-
258+
const npmPath = path.join(nodeDir, "npm");
259+
260260
try {
261261
// Try to use npm from the same directory as node
262262
await fs.access(npmPath);
@@ -265,7 +265,7 @@ export function setup(cwd = process.cwd()) {
265265
} catch (err) {
266266
console.log(`npm not found in Node.js directory: ${err.message}`);
267267
}
268-
268+
269269
// Fallback to direct npm execution
270270
return exec("npm", args, options);
271271
},

0 commit comments

Comments
 (0)