-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(npm): set up node_modules/.bin/ entries for package that provide …
…bin entrypoints (#23496) Closes #23036 --------- Co-authored-by: Nathan Whitaker <[email protected]>
- Loading branch information
1 parent
959739f
commit 92a8d09
Showing
12 changed files
with
255 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. | ||
|
||
use crate::npm::managed::NpmResolutionPackage; | ||
use deno_core::anyhow::Context; | ||
use deno_core::error::AnyError; | ||
use std::path::Path; | ||
|
||
pub(super) fn set_up_bin_entry( | ||
package: &NpmResolutionPackage, | ||
bin_name: &str, | ||
#[allow(unused_variables)] bin_script: &str, | ||
#[allow(unused_variables)] package_path: &Path, | ||
bin_node_modules_dir_path: &Path, | ||
) -> Result<(), AnyError> { | ||
#[cfg(windows)] | ||
{ | ||
set_up_bin_shim(package, bin_name, bin_node_modules_dir_path)?; | ||
} | ||
#[cfg(unix)] | ||
{ | ||
symlink_bin_entry( | ||
package, | ||
bin_name, | ||
bin_script, | ||
package_path, | ||
bin_node_modules_dir_path, | ||
)?; | ||
} | ||
Ok(()) | ||
} | ||
|
||
#[cfg(windows)] | ||
fn set_up_bin_shim( | ||
package: &NpmResolutionPackage, | ||
bin_name: &str, | ||
bin_node_modules_dir_path: &Path, | ||
) -> Result<(), AnyError> { | ||
use std::fs; | ||
let mut cmd_shim = bin_node_modules_dir_path.join(bin_name); | ||
|
||
cmd_shim.set_extension("cmd"); | ||
let shim = format!("@deno run -A npm:{}/{bin_name} %*", package.id.nv); | ||
if cmd_shim.exists() { | ||
if let Ok(contents) = fs::read_to_string(cmd_shim) { | ||
if contents == shim { | ||
// up to date | ||
return Ok(()); | ||
} | ||
} | ||
return Ok(()); | ||
} | ||
fs::write(&cmd_shim, shim).with_context(|| { | ||
format!("Can't set up '{}' bin at {}", bin_name, cmd_shim.display()) | ||
})?; | ||
|
||
Ok(()) | ||
} | ||
|
||
#[cfg(unix)] | ||
fn symlink_bin_entry( | ||
_package: &NpmResolutionPackage, | ||
bin_name: &str, | ||
bin_script: &str, | ||
package_path: &Path, | ||
bin_node_modules_dir_path: &Path, | ||
) -> Result<(), AnyError> { | ||
use std::os::unix::fs::symlink; | ||
let link = bin_node_modules_dir_path.join(bin_name); | ||
let original = package_path.join(bin_script); | ||
|
||
// Don't bother setting up another link if it already exists | ||
if link.exists() { | ||
let resolved = std::fs::read_link(&link).ok(); | ||
if let Some(resolved) = resolved { | ||
if resolved != original { | ||
log::warn!( | ||
"{} Trying to set up '{}' bin for \"{}\", but an entry pointing to \"{}\" already exists. Skipping...", | ||
deno_terminal::colors::yellow("Warning"), | ||
bin_name, | ||
resolved.display(), | ||
original.display() | ||
); | ||
} | ||
return Ok(()); | ||
} | ||
} | ||
|
||
use std::os::unix::fs::PermissionsExt; | ||
let mut perms = std::fs::metadata(&original).unwrap().permissions(); | ||
if perms.mode() & 0o111 == 0 { | ||
// if the original file is not executable, make it executable | ||
perms.set_mode(perms.mode() | 0o111); | ||
std::fs::set_permissions(&original, perms).with_context(|| { | ||
format!("Setting permissions on '{}'", original.display()) | ||
})?; | ||
} | ||
let original_relative = | ||
crate::util::path::relative_path(bin_node_modules_dir_path, &original) | ||
.unwrap_or(original); | ||
symlink(&original_relative, &link).with_context(|| { | ||
format!( | ||
"Can't set up '{}' bin at {}", | ||
bin_name, | ||
original_relative.display() | ||
) | ||
})?; | ||
|
||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env -S node | ||
|
||
import process from "node:process"; | ||
|
||
for (const arg of process.argv.slice(2)) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"tests": { | ||
"sets_up_bin_dir": { | ||
"tempDir": true, | ||
"steps": [ | ||
// {"commandName": "npm", "args": "install", "output": "\nadded 1 package in [WILDCARD]\n"}, | ||
{ | ||
"args": "task sayhi", | ||
"output": "task.out" | ||
}, | ||
{ | ||
"if": "unix", | ||
"commandName": "./node_modules/.bin/cli-esm", | ||
"args": "hi hello", | ||
"output": "hi\nhello\n" | ||
}, | ||
{ | ||
"if": "windows", | ||
"commandName": "./node_modules/.bin/cli-esm.cmd", | ||
"args": "hi hello", | ||
"output": "hi\nhello\n" | ||
}, | ||
{ | ||
"commandName": "npm", | ||
"args": "run sayhi", | ||
"output": "npm-run.out" | ||
} | ||
] | ||
}, | ||
"warns_if_already_setup": { | ||
"tempDir": true, | ||
"steps": [{ | ||
"if": "unix", | ||
"commandName": "npm", | ||
"args": "install", | ||
"output": "\nadded 1 package in [WILDCARD]\n" | ||
}, { | ||
"if": "unix", | ||
"args": "task sayhi", | ||
"output": "already-set-up.out" | ||
}] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Download http://localhost:4260/@denotest/bin | ||
Download http://localhost:4260/@denotest/bin/1.0.0.tgz | ||
Initialize @denotest/[email protected] | ||
Warning Trying to set up [WILDCARD] bin for [WILDCARD], but an entry pointing to [WILDCARD] already exists. Skipping... | ||
Warning Trying to set up [WILDCARD] bin for [WILDCARD] but an entry pointing to [WILDCARD] already exists. Skipping... | ||
Warning Trying to set up [WILDCARD] bin for [WILDCARD], but an entry pointing to [WILDCARD] already exists. Skipping... | ||
Task sayhi cli-esm hi hello | ||
hi | ||
hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"nodeModulesDir": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
> sayhi | ||
> cli-esm hi hello | ||
|
||
hi | ||
hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "bin_package", | ||
"devDependencies": { | ||
"@denotest/bin": "1.0.0" | ||
}, | ||
"scripts": { | ||
"sayhi": "cli-esm hi hello" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Download http://localhost:4260/@denotest/bin | ||
Download http://localhost:4260/@denotest/bin/1.0.0.tgz | ||
Initialize @denotest/[email protected] | ||
Task sayhi cli-esm hi hello | ||
hi | ||
hello |