We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Nodejs allows user to replace process.argv vector, but Trireme does not. Create simple test.js file:
process.argv
test.js
console.log(process.argv); process.argv = []; console.log(process.argv);
After that:
> node test.js [ 'C:\\Program Files\\nodejs\\node.exe', 'T:\\Temp\\test.js' ] [] > java -jar trireme.0.7.5.jar test.js [ './node', 'T:\\Temp\\test.js' ] [ './node', 'T:\\Temp\\test.js' ]
This blocks us from replacing the environment, for example, for the typescript compiler (which currently takes arguments only from process.argv).
The text was updated successfully, but these errors were encountered:
This is easy to fix -- testing a fix now.
Is this holding something up? I have some other changes staged to go in to a release, and wondering when it makes sense to do that.
Sorry, something went wrong.
No, this isn't holding anything for me. You may follow your standard release schedule. And thank you for support.
Fixed in 0.8.0.
No branches or pull requests
Nodejs allows user to replace
process.argv
vector, but Trireme does not.Create simple
test.js
file:After that:
This blocks us from replacing the environment, for example, for the typescript compiler (which currently takes arguments only from
process.argv
).The text was updated successfully, but these errors were encountered: