diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-02-22 22:45:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-22 22:45:35 -0500 |
| commit | b15f9e60a040e2e450e7ca9971a5fc07dbf8b94c (patch) | |
| tree | 4290744b0c0a8f8f5d063322a650fdabf2d3150c /cli/Cargo.toml | |
| parent | cc8e4a00aaf4c4fe959944c7400f2e259f7faae8 (diff) | |
feat(task): support scripts in package.json (#17887)
This is a super basic initial implementation. We don't create a
`node_modules/.bin` folder at the moment and add it to the PATH like we
should which is necessary to make command name resolution in the
subprocess work properly (ex. you run a script that launches another
script that then tries to launch an "npx command"... this won't work
atm).
Closes #17492
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3903d32f1..6c7c8e128 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -50,7 +50,7 @@ deno_graph = "0.44.0" deno_lint = { version = "0.40.0", features = ["docs"] } deno_lockfile.workspace = true deno_runtime = { workspace = true, features = ["dont_create_runtime_snapshot", "include_js_files_for_snapshotting"] } -deno_task_shell = "0.8.1" +deno_task_shell = "0.10.0" napi_sym.workspace = true async-trait.workspace = true @@ -75,7 +75,7 @@ fancy-regex = "=0.10.0" flate2.workspace = true http.workspace = true import_map = "=0.15.0" -indexmap = "=1.9.2" +indexmap.workspace = true jsonc-parser = { version = "=0.21.0", features = ["serde"] } libc.workspace = true log = { workspace = true, features = ["serde"] } |
