-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
Windows support #12
Comments
I add a closer look at what Shebang support is nice but requires resolving the executable file path, read its contents, then manipulate the file/arguments. This would require too many bytes to implement. Users can work around this by specifying the runtime explicitly, e.g.
However, there is one critical feature that we probably should support. Right now, on Windows, |
See background comments about this in sindresorhus/execa#1147
Windows support is important. But it also requires a fair amount of code.
We can't use
node-cross-spawn
because it's got too much code for our design goal of keeping this package small. Also, that package is unmaintained (see sindresorhus/execa#578).I would suggest the following:
The text was updated successfully, but these errors were encountered: