Paul Laskowski

Results 22 comments of Paul Laskowski

Just came across this on a project uses webpack-dev-server for local dev with a `_redirects` created via netlify-webpack-plugin. Working around by relying on redundant redirects in netlify.toml file for now,...

Just popping in here to request that this issue get prioritized a bit, since it's been agreed that changing the canceled build status to successful (or neutral) would be a...

I've run into needing to document file upload endpoints that use this content type. (like in #8)

Yeah, basically we worked around it by using React Helmet in our app to add a style tag with the css to override it with a `!important`. ``` html {...

I agree, I also see a lot of code where folks destructure the props right in the component function args. In fact, anecdotally, I don't really see defaultProps being used...

An alternative way to allow this, but still get default values out would be to take the jsDoc annotation of a prop and parse out the `@defalut` as in the...

I see the same thing with flow annotations in .jsx files. I have basically gotten used to hitting undo (cmd-z) to clear the close tag after it's auto-generated (on mac).

FYI, I get this same problem using css-modules with typescript (replaced babel with barbatus/typescript). I needed to follow comments above as well and `import { styles } from ./my-css.css` as...

I updated to [email protected] and nathantreid:[email protected]. The import works now and the components are styled for the normal js style import of `import styles from ./my-css.css`, but in the case...