-
-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: parseNi
etc. now return ResolvedCommand
object instead of string, migrate to tinyexec
#231
Conversation
commit:
|
We should probably wait for tinylibs/tinyexec#29 to be resolved first, but besides that it looks good to me |
src/runner.ts
Outdated
@@ -140,5 +148,12 @@ export async function run(fn: Runner, args: string[], options: DetectOptions = { | |||
return | |||
} | |||
|
|||
await ezspawn(command, { stdio: 'inherit', cwd }) | |||
const [xCommand, ...xArguments] = command.split(' ') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it's safe to use split, as you might have edge cases like run "foo bar"
, we would either need to complete change how we compose the commands (use array instead of string), or we need tinyexec to support parsing string commands
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be easy since we have the original arguments, I'll change it tmr.
Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
tinyexec
parseN..
now returns ResolvedCommand
object instead of string, migreate to tinyexec
Made some refactoring and upgraded |
src/utils.ts
Outdated
const VOLTA_PREFIX = 'volta run' | ||
const hasVoltaCommand = cmdExists('volta') | ||
return hasVoltaCommand ? VOLTA_PREFIX : '' | ||
export function isVoltaExists(): boolean { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesVoltaExist
might be a bit more grammatically correct name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think identifiers are valid English sentences, which grammar doesn't always apply (it can be read as an abbr of "is it true that volta exists in current directory?"). I tend to use is
prefix to describe functions that return boolean.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fair enough. might be able to make it isVoltaInstalled
or isVoltaPresent
or something like that if you wanted to keep the is
prefix and make it a bit more grammatical
anyway, this PR looks good to me. this was the only thing I noticed
parseN..
now returns ResolvedCommand
object instead of string, migreate to tinyexec
parseNi
etc. now return ResolvedCommand
object instead of string, migrate to tinyexec
Description
This PR
parseNi
,parseNr
etc programmatic APIs now returnsResolvedCommand
object instead of plain string@jsdevtools/ez-spawn
withtinyexec
usingx
arguments (split command using space).🚨🚨 DO NOT RELEASE YET WE NEED TO DO SOME EXTERNAL TESTS 🚨🚨
Linked Issues
Additional context