Antonio Nuno Monteiro
Antonio Nuno Monteiro
you want `.-constructor`
This is related to how Lumo is packaged. If you want to contribute a fix for this issue, the platform detection lives here: https://github.com/anmonteiro/lumo/blob/master/download/src/index.js#L36-L40
We already do this
Settings expectations here: 1) I don't really maintain this project anymore. I've expressed interest in onboarding people but there also doesn't seem to be much interest from other folks. 2)...
we try both `node` and `nodejs`. This looks to be an issue with the printed line: `complete = Array(Math.max(0, completeLength + 1)).join(this.chars.complete);` Apparently `0` is not a valid Array length...
You should be comparing this to ClojureScript on the JVM, not Clojure. I think this is by design but I can't check right now.
@daviwil Well Lumo is nothing but a custom ClojureScript init script on top of Node, so NPM dependencies are supported by default. In this [comment](https://github.com/anmonteiro/lumo/issues/51#issuecomment-264925177) I explain how to include...
Related: https://github.com/NixOS/nixpkgs/pull/33691 credit: @jgertm
There's currently no support for that in Lumo, since we compile the resulting binary without the [V8 inspector](https://github.com/anmonteiro/lumo/blob/ef4f2046eb9b449d9747028c2423a731f6a3c0ec/scripts/package.js#L51). While including the V8 inspector in the resulting binary is an easy...
The packaging involves creating a standalone binary which is basically Node.js with a custom initialization script to land you in a ClojureScript REPL. The release process compiles all C++ in...