Adam Piper

Results 9 comments of Adam Piper

Those versions were pinned to avoid build problems... slightly irritating that they're no longer available! I'll have a look at this at the weekend; I'm too busy until then. If...

I should also get it building on Docker Hub so that in future at least a 3rd-party-built binary copy will be available.

Thanks for the rapid response, I'll need to change a few things to test this out so it'll have to be on the train home from work this evening. Out...

Interesting. I'm not sure where I stand on the preference actually - I think I like having the "tag" in there in some ways. The trouble with altering Aeson's configuration...

Interestingly if I use ```haskell deriveElmDef (defaultOptions { sumEncoding = defaultTaggedObject }) ''DoneState ``` Then invalid Elm is generated: ```elm jsonDecEditDone : Json.Decode.Decoder ( EditDone ) jsonDecEditDone = Json.Decode.map3 EditDone...

After messing around with the Elm file manually, deleting those spurious cases lines, it now works, so that's a strange bug.

I actually moved away from `newtype` because an earlier version of elm-bridge didn't like it - I forget why, but I've been ignoring the linter since then ;) I'll swap...

Sorry, I've been quite busy :\ Cabal file extract: ```cabal build-type: Simple cabal-version: >=1.10 executable elmbridge hs-source-dirs: elmbridge main-is: Main.hs default-language: Haskell2010 build-depends: base >= 4.7 && < 5 ,...

@nethriis I had the same problem, I followed the instructions at https://medium.com/@steveruiz/using-a-javascript-library-without-type-declarations-in-a-typescript-project-3643490015f3 and created a file in the root of my project called `markdown-it-emoji.d.ts` with the contents: ```ts declare module...