Open
Description
- https://github.com/lix-pm/haxeshim/blob/master/src/haxeshim/HaxelibCli.hx#L60 uses haxelib.json's
mainClass
, but it should be justmain
based on docs. - It doesn't consider the default value of
"main": "Run"
. - It doesn't actually implement running the interpreter.
The first 2 should be easy enough, not sure about actually running it. Would it come down to just callHaxelib(['run', name].concat(args))
or would it be better to call haxe directly?