aboutsummaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
authorGravatar Alex Lam S.L <alexlamsl@gmail.com> 2023-01-15 07:37:16 +0200
committerGravatar GitHub <noreply@github.com> 2023-01-14 21:37:16 -0800
commit893ec2fb45ae2b39a28864b6d1c9992a694be9cb (patch)
treed2abba07cefb1d9cad5704ebd5404dddbd465aaa /src/cli
parent136014b13a0df0641cd7d8ff29d8cf41fae92622 (diff)
downloadbun-893ec2fb45ae2b39a28864b6d1c9992a694be9cb.tar.gz
bun-893ec2fb45ae2b39a28864b6d1c9992a694be9cb.tar.zst
bun-893ec2fb45ae2b39a28864b6d1c9992a694be9cb.zip
fix life-cycle script execution (#1799)
- change current working directory for workspaces - add `node_modules/.bin` to `PATH` before running
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/run_command.zig100
1 files changed, 43 insertions, 57 deletions
diff --git a/src/cli/run_command.zig b/src/cli/run_command.zig
index c2d5f407a..312776c79 100644
--- a/src/cli/run_command.zig
+++ b/src/cli/run_command.zig
@@ -533,82 +533,68 @@ pub const RunCommand = struct {
var needs_to_force_bun = force_using_bun or !found_node;
var optional_bun_self_path: string = "";
- if (bin_dirs.len > 0 or package_json_dir.len > 0) {
- var new_path_len: usize = PATH.len + 2;
- for (bin_dirs) |bin| {
- new_path_len += bin.len + 1;
- }
+ var new_path_len: usize = PATH.len + 2;
+ for (bin_dirs) |bin| {
+ new_path_len += bin.len + 1;
+ }
- if (package_json_dir.len > 0) {
- new_path_len += package_json_dir.len + 1;
- }
+ if (package_json_dir.len > 0) {
+ new_path_len += package_json_dir.len + 1;
+ }
- new_path_len += if (needs_to_force_bun) bun_node_dir.len + 1 else 0;
+ new_path_len += root_dir_info.abs_path.len + "node_modules/.bin".len + 1;
- var new_path = try std.ArrayList(u8).initCapacity(ctx.allocator, new_path_len);
+ if (needs_to_force_bun) {
+ new_path_len += bun_node_dir.len + 1;
+ }
- if (needs_to_force_bun) {
- createFakeTemporaryNodeExecutable(&new_path, &optional_bun_self_path) catch unreachable;
- if (!force_using_bun) {
- this_bundler.env.map.put("NODE", bun_node_dir ++ "/node") catch unreachable;
- this_bundler.env.map.put("npm_node_execpath", bun_node_dir ++ "/node") catch unreachable;
- this_bundler.env.map.put("npm_execpath", optional_bun_self_path) catch unreachable;
- }
+ var new_path = try std.ArrayList(u8).initCapacity(ctx.allocator, new_path_len);
- needs_to_force_bun = false;
+ if (needs_to_force_bun) {
+ createFakeTemporaryNodeExecutable(&new_path, &optional_bun_self_path) catch unreachable;
+ if (!force_using_bun) {
+ this_bundler.env.map.put("NODE", bun_node_dir ++ "/node") catch unreachable;
+ this_bundler.env.map.put("npm_node_execpath", bun_node_dir ++ "/node") catch unreachable;
+ this_bundler.env.map.put("npm_execpath", optional_bun_self_path) catch unreachable;
}
- {
- var needs_colon = false;
- if (package_json_dir.len > 0) {
- defer needs_colon = true;
- if (needs_colon) {
- try new_path.append(':');
- }
- try new_path.appendSlice(package_json_dir);
- }
+ needs_to_force_bun = false;
+ }
- var bin_dir_i: i32 = @intCast(i32, bin_dirs.len) - 1;
- // Iterate in reverse order
- // Directories are added to bin_dirs in top-down order
- // That means the parent-most node_modules/.bin will be first
- while (bin_dir_i >= 0) : (bin_dir_i -= 1) {
- defer needs_colon = true;
- if (needs_colon) {
- try new_path.append(':');
- }
- try new_path.appendSlice(bin_dirs[@intCast(usize, bin_dir_i)]);
+ {
+ var needs_colon = false;
+ if (package_json_dir.len > 0) {
+ defer needs_colon = true;
+ if (needs_colon) {
+ try new_path.append(':');
}
+ try new_path.appendSlice(package_json_dir);
+ }
+ var bin_dir_i: i32 = @intCast(i32, bin_dirs.len) - 1;
+ // Iterate in reverse order
+ // Directories are added to bin_dirs in top-down order
+ // That means the parent-most node_modules/.bin will be first
+ while (bin_dir_i >= 0) : (bin_dir_i -= 1) {
+ defer needs_colon = true;
if (needs_colon) {
try new_path.append(':');
}
- try new_path.appendSlice(PATH);
+ try new_path.appendSlice(bin_dirs[@intCast(usize, bin_dir_i)]);
}
- this_bundler.env.map.put("PATH", new_path.items) catch unreachable;
- PATH = new_path.items;
- }
-
- if (needs_to_force_bun) {
- needs_to_force_bun = false;
-
- var new_path = try std.ArrayList(u8).initCapacity(ctx.allocator, PATH.len);
- createFakeTemporaryNodeExecutable(&new_path, &optional_bun_self_path) catch unreachable;
- if (new_path.items.len > 0)
+ if (needs_colon) {
try new_path.append(':');
- try new_path.appendSlice(PATH);
-
- this_bundler.env.map.put("PATH", new_path.items) catch unreachable;
-
- if (!force_using_bun) {
- this_bundler.env.map.put("NODE", bun_node_dir ++ "/node") catch unreachable;
- this_bundler.env.map.put("npm_node_execpath", bun_node_dir ++ "/node") catch unreachable;
- this_bundler.env.map.put("npm_execpath", optional_bun_self_path) catch unreachable;
}
- PATH = new_path.items;
+ try new_path.appendSlice(root_dir_info.abs_path);
+ try new_path.appendSlice("node_modules/.bin");
+ try new_path.append(':');
+ try new_path.appendSlice(PATH);
}
+ this_bundler.env.map.put("PATH", new_path.items) catch unreachable;
+ PATH = new_path.items;
+
this_bundler.env.map.putDefault("npm_config_local_prefix", this_bundler.fs.top_level_dir) catch unreachable;
// we have no way of knowing what version they're expecting without running the node executable