Jason Miller

Results 155 issues of Jason Miller
trafficstars

I believe #3091 may have introduced a bug where `h('div', { children: 'foo' }, undefined)` would produce `{ children: undefined }`. This fixes that bug, if it is a bug....

I've been [toying around with optimizing Tagged Templates](https://gist.github.com/developit/7118c02bf0270e1d5751d2a9e22c1faa) by merging literal field values (strings, numbers and booleans) into their adjacent static part and collapsing the adjacent static parts into a...

enhancement
proposal

**What kind of change does this PR introduce?** Transpiles generators to regenerator in legacy bundles. **Summary** In 3.3.0, we stopped using `fast-async` to transpile async functions, however this meant they...

This fixes #1331. Note: I just made this edit quickly, need to install [tempy](https://github.com/sindresorhus/tempy) and update the package lock.

## Feature Proposal: Custom Prerendering / SSR Entry I'd like to propose that we add support for an optional `src/prerender.js` (+`.ts`, etc) entrypoint. When we construct the Webpack configuration for...

**Do you want to request a _feature_ or report a _bug_?** Feature **What is the current behaviour?** No focus management for a11y by default. **What is the expected behaviour?** When...

enhancement

One thing I haven't checked yet: will this cause prerender-data-provider to attempt to fetch prerender data because there's no script tag?

Currently, optional path segments that do not match a current URL produce same-named props with an empty string value: ```js exec('/posts', '/posts/:user?/:id?', {}) // { user: "", id: "" }...

semver:major

When rendered via `preact-render-to-string`, `onChange` and `route()` both don't make sense - updates can't be rendered since rendering is synchronous and single-pass, so we'll just disable this functionality entirely. /cc...