Aidan Nulman

Results 27 comments of Aidan Nulman

Oooooh, nice to know I can drop down to the raw API! Thanks @tanema :) As for how to wrap it safely within Theme Kit—are there any specific concerns? I...

Oh for sure! Not allowing it on the production live theme _at all_ is probably a good idea. Anyway, no rush—I'm sure y'alls have plenty of other priorities. We'll keep...

Bumping this thread; per @villander's React notes I'd also suggest looking upstream at Webpack's code splitting guide, particularly re [prefetch & preload](https://webpack.js.org/guides/code-splitting/#prefetching-preloading-modules). Since Ember is convention > configuration though, I...

Update: I tried an alternative solution, roughly speaking: ```ts const getPace = React.useCallback((char: string) => { const defaultPace = windups.defaultGetPace(char, undefined); return isInFastMode ? (defaultPace / 50) : defaultPace; },...

> Now this is where the unreleased version 2 that's been sitting on the shelf completely unloved by me comes in: it has a RewindupChildren component that can diff two...

Hey Sam! Sending you a gentle + compassionate nudge on this thread—I appreciate that your focus is elsewhere! I tried to look through the branches published on Github and can't...

Alas, unless that version supports the new `isPaused` prop I can't really use it in prod! The `isPaused` work is more critical to the site experience we're going for 😭...

@moomerman @arfl Thanks for the reports, and the pinned commit! Apologies for the breakage. @HashNuke I think there are two possible changes: **Most Resilient** Extend Travis to check for or...

Specifically, for the first option: - Change the `-otp-builds` project's [`travis.yml`](https://github.com/HashNuke/heroku-buildpack-elixir-otp-builds/blob/master/.travis.yml#L6-L7) to declare a [build matrix](https://docs.travis-ci.com/user/build-matrix/) of `HEROKU_STACK` envs - Compile a list of missing builds builds before calling [`run_build`](https://github.com/HashNuke/heroku-buildpack-elixir-otp-builds/blob/master/build.sh#L19)...

I'm guessing you need to specify the `configFile` option to the `babel-loader` _and_ as `babelOptions` to the Linaria webpack loader. See my comment here: https://github.com/callstack/linaria/issues/589#issuecomment-1224287054