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
Would be nice for the compilation targets to determine the compilation pipeline - for instance:
Each target should provide a compiler built out of the current pipeline parts as well as a command to execute the code and run a REPL.
Compiler options:
--target
js
--platform
nodejs
--runtime
--packaging
module
standalone
sprtn run -i test.sprtn --target ES6 --platform nodejs --packaging module
Alternatively, the options can be combined into a single target string:
sprtn run -i test.sprtn --target es6-nodejs-module sprtn run -i test.sprtn --target native-x86_64-shared
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Would be nice for the compilation targets to determine the compilation pipeline - for instance:
Each target should provide a compiler built out of the current pipeline parts as well as a command to execute the code and run a REPL.
Compiler options:
--target
- sets the compilation target, which sets the default compiler options and then applies overrides from the command line (for instancejs
),--platform
- sets the target-specific platform (e.g.nodejs
),--runtime
- sets the target-specific runtime (if there are multiple provided),--packaging
- target specific packaging (for example,module
vsstandalone
).Alternatively, the options can be combined into a single target string:
The text was updated successfully, but these errors were encountered: