Ryan Roemer

Results 175 comments of Ryan Roemer

Idea -- I think what might be happening is `wait-for` is getting _some_ response from the webpack dev server, but not sufficient for Jest testing. Maybe switch to static serving...

I’m not exactly sure what is up as I am unfamiliar with the tools used for our docs, but there is definitely something at issue with our build configuration

What appears to work in development, definitely is not built correctly for production

Oh, and that asset in question doesn’t have a commit hash, I believe it is a content hash if I were guessing

Some quick research. Probably should wrap up more concisely in a PR or issue upstream. Starting point: ```js // static.config.js throw new Error("HI"); ``` This produces an error but doesn't...

It looks like react-static may have fixed this here: https://github.com/react-static/react-static/pull/1451 AFAICT it’s presently only in master https://github.com/react-static/react-static/blob/master/CHANGELOG.md but as soon as that releases we should definitely update!

@kale-stew This might be a related thing to #870 in that both `Appear` and `Stepper` are similarly written, and used here: https://github.com/FormidableLabs/spectacle/blob/88e635bae3a00eda9fd35bc77acb9d7ffe5a7b74/src/components/deck/index.js#L143-L144

We've actually already got a reproduction of this issue in present `master` in the md examples: ```sh $ yarn start:md ``` Navigate to: http://127.0.0.1:3100/?slide=5&slideElement=-1 and see the minuscule indents: ![Screen...

@LongLiveCHIEF -- Is it trimming them, or are they just really, really small? I ended up doing like 8x the normal spaces I wanted then, finally saw them. (My strong...

@LongLiveCHIEF -- My understanding is that the whitespace is "translated" by the code formatter to then a style amount, so it's not "stripped" per se, it's just "used for math"...