lucamug

Results 45 issues of lucamug

This "tree interactive animation" could be a nice example for the elm-playground as it is written with few lines of codes and generate a nice visual effect. Disclaimer: I am...

Some type is not exposed causing the type signature of main to fail. Related to https://github.com/evancz/elm-playground/issues/9

I am getting these errors trying to write the type signature of main: ``` I cannot find a `Playground.Game` type I cannot find a `Playground.Msg` type ``` I am going...

I have a module that import Tangram with: ```Elm import Tangram.Model as Tangram import Tangram.Types as Tangram import Tangram.Update as Tangram import Tangram.View as Tangram ``` and use ```Elm Tangram.subscriptions...

investigating

The following line of Elm code make the counter to stop the count: ``` Html.node "style" [] [ Html.text "div[role=button] {-webkit-tap-highlight-color: transparent}" ] ``` For example, this file 4 lines...

This seems fixing the issue #235, but I am not sure if there are regressions

If you try an url for a non existing file, for example: http://localhost:8000/xyz/index.html elm-live will stop with the error: ``` internal/fs/utils.js:537 throw new ERR_INVALID_ARG_TYPE(propName, ['string', 'Buffer', 'URL'], path); ^ TypeError...

This is causing elm-live to crash with error ``` internal/fs/utils.js:581 throw new ERR_INVALID_ARG_TYPE(propName, ['string', 'Buffer', 'URL'], path); ^ TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string or an...

In case the url is something like: http://localhost:8001/index.html?a=b It seems that this snippet is not inserted. In start.js: } else if (url.isType(CONTENT_TYPE)) { readFile(url.getPath, 'utf8') .alt(readFile(url.rootpath, 'utf8')) .fork(resolveNotFound(res), resolveWith(model.reload, res))...

Adding this as placeholder for few features that could be added: * QR Code for development on mobile phones * Animation while the code is compiling * Logo in terminal...