Weston Thayer

Results 28 comments of Weston Thayer

Also helps Typescript `tsc --build --incremental` (on by default with Project References), caching the `outDir` and any `*.tsbuildinfo` files. We don't need to key these based on any src files,...

That makes sense. I still haven't wrapped my head around the autocomplete solutions out there for CoffeeScript, but I think autocomplete is an important feature for most people. Did you...

Sounds reasonable. I'll break this feature out into an optional module.

The preview server is built into framer-cli. Just type `framer preview` within the project that you've created with `framer new MyProject.framer`.

This actually would be super easy to implement. It already works. If you just get your local IP address, then type that into another device on the same network, it...

Thanks for tackling this y'all! Great to hear you've already been testing in different ATs (assistive technologies, like screen readers) @diegohaz. You might consider adding iOS VoiceOver + iOS Safari...

FWIW it's easy to add this yourself before render: ``` feed.items.sort((a, b) => b.date - a.date) ``` will do a reverse sort (newest to oldest). I could see potentially changing...

> I'm worried this breaks stuff like single page apps that don't expect focus to jump around with their same-document history navigation though. I can try to find some examples....