Dillon Kearns

Results 223 comments of Dillon Kearns

It would be cool to explore an API that lets you do ``` PagePath.directory page1 == PagePath.directory page2 ``` Might be as simple as adding the directory to the internal...

That's true! Pretty easy to solve by splitting the actual types out into separate modules fortunately 👍 With Elm packages, you can choose which modules to expose in the package,...

Hello @asianfilm! That's very cool, thanks so much for sharing all these details from your use case. It's nice to hear about it, and it makes discussing these types of...

Ah yes, indeed, that makes a lot of sense to expose the `Shared.Data` as part of `Shared.init` (analogous to how Page Modules do that) 👍 Thanks for the suggestion! I...

Yeah, somehow it seems like there's a problem in the overall architecture here that needs to be revisited somehow. I guess the challenge is that I'm trying to have a...

Thank you for filing the issue @evanj2357. I think we have a fix for this. The next release will go out once #256 is resolved.

Interesting. It would definitely be possible at the framework-level to retain the previous page's `Model` while transitioning, and given a Page Model, it's possible to render the view (this is...

Hello there, is there a specific tag you're trying to create? The general purpose `node` function is intentionally not exposed. One of the reasons is that the Head API isn't...

There were some performance problems in an older version of `elm-pages` that are fixed in the latest version, so make sure you're on `elm-pages` 1.5.4 of the NPM package and...

We did some performance benchmarking to find bottlenecks, discussed in this thread: https://github.com/dillonkearns/elm-pages/issues/137. The main finding was that rendering images in puppeteer, and using the headless browser in general, was...