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
version
v1.3.195
platform
Linux: Ubuntu Node: v20.17.0
problem
You can use *command-line-args* to get args in a .cljs script, but if you then invoke that cljs script from JavaScript the args are nil.
*command-line-args*
repro
(ns args) (print *command-line-args*)
import { loadFile } from "nbb"; await loadFile("args.cljs");
Running these:
$ npx nbb args.cljs --hello (--hello) $ node args.mjs --hello nil
expected behavior
I think I would expect the output of the second command to match the first.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
version
v1.3.195
platform
Linux: Ubuntu
Node: v20.17.0
problem
You can use
*command-line-args*
to get args in a .cljs script, but if you then invoke that cljs script from JavaScript the args are nil.repro
Running these:
expected behavior
I think I would expect the output of the second command to match the first.
The text was updated successfully, but these errors were encountered: