Windows build fixes: yarn and docs #515
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "windows-fix"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Full fix also requires changes to buildhelper on https://github.com/codemirror/buildhelper/pull/3
With these two fixes the following work for me on Windows:
See https://github.com/codemirror/codemirror.next/issues/425
The run args vs options thing felt quite subjective. Happy to rework as you prefer. Seemed good not to have to specify either default in the common case.
Thanks for looking into this. I'd prefer for the working dir arg to
runto stay a positional argument (since it's used very often), and the options argument to become the fourth argument.@ -60,8 +60,8 @@ function error(err) {process.exit(1)Isn't this missing an
= {}to avoid making the argument required? Looks like it will error now when called with 2 or 3 arguments.@ -60,8 +60,8 @@ function error(err) {process.exit(1)Yes, thanks. Updated. I've now tested with the status command too.