diff options
author | Eduardo Julian | 2020-07-16 23:19:57 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-07-16 23:19:57 -0400 |
commit | 80c727065593a4cadcb1d72c38c8ad5c3bf85acc (patch) | |
tree | 2f01222debb9a4756dfe3f26d41af660742487c9 /commands.md | |
parent | de1d6adc6657feb81332db8620094dd8de150b96 (diff) |
Can get the JS compiler to compile its own source-code.
Diffstat (limited to 'commands.md')
-rw-r--r-- | commands.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/commands.md b/commands.md index 2c2e6b4e8..a0dae0ac4 100644 --- a/commands.md +++ b/commands.md @@ -182,7 +182,12 @@ cd ~/lux/lux-js/ && lein clean && lein lux auto build ``` cd ~/lux/stdlib/ && lein clean && cd ~/lux/lux-js/ && time java -jar target/program.jar build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux +cd ~/lux/stdlib/target/ && node program.js + +cd ~/lux/lux-js/ && time java -jar program.jar build --source ~/lux/lux-js/source --target ~/lux/lux-js/target --module program +cd ~/lux/lux-js/target/ && node program.js +cd ~/lux/stdlib/ && lein clean && cd ~/lux/lux-js/ && node program.js build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux cd ~/lux/stdlib/target/ && node program.js ``` |