elm-script icon indicating copy to clipboard operation
elm-script copied to clipboard

Experimental command-line scripting for Elm

Results 15 elm-script issues
Sort by recently updated
recently updated
newest added

I am using linux (pop-os) I installed deno with `curl -fsSL https://deno.land/install.sh | sh` without issues. Trying to install the script using the command `deno install -A -n elm-script https://elm-script.github.io/latest`...

* Adds request information to error messages. * Adds stack trace to error messages. The stack is truncated so that stack frames including and above XMLHttpRequest.send are not included, since...

* Makes some of the examples more perspicuous by outputting usage information when the script is run without the necessary arguments * Modifies the .gitignore to ignore files generated by...

I followed the instructions in the readme to install elm-script but I'm getting this error ``` % deno install -A -n elm-script ~/elm-script/runner/main.js Download https://deno.land/std/path/mod.ts Warning Implicitly using master branch...

I noticed that while there is `Script.Directory.listFiles` and `Script.Directory.listSubdirectories` they don't list any items in subdirectories. I think it would be useful to have something like this too (and something...

It would be useful to have a function that behaves like `collect` except that it doesn't stop when it encounters an error. Instead it always runs for every item and...

I tried using `Script.andThen` like this ``` Script.File.readOnly init.userPrivileges path |> Script.File.read |> Script.andThen (\text -> Script.succeed text) ``` I was expecting it to work the same way `andThen` works...

If set, don't run Elm compiler with `--optimize`, so that scripts can use `Debug.toString`, `Debug.log` etc.

I think the following would be a useful helper function to have once https://github.com/ianmackenzie/elm-script/issues/21 is solved. ``` elmHome : Script.Init -> String elmHome init = let default = case init.platform...

I tried to read from a file and found that file paths in this form `~/path/to/file.txt` don't work. If I change it to `/Users/MyAccount/path/to/file.txt` then it does work however.