Open
Description
It has come to my attention that eslisp doesn't build on Windows.
I don't have a Windows machine to test on, but from what I can gather, these are the points of friction, in the form of a todo list:
- CI-test it, so users on other platforms also know it works. (Travis doesn't do Windows. Alt: AppVeyor?)
- Remove the
make
dependency. (Alt: Jake? Gulp?) - Some code has file paths fixed to being
/
-delimited. (Should usepath.join
.) - Explicitly call
node <filename>
in tests. (Windows doesn't recognise the shebang line. @isiahmeadows' Use node to run eslc binary #43 addresses this.)
Anything I've missed? Opinions? Volunteers?