Juho Vepsäläinen

Results 352 comments of Juho Vepsäläinen

@Chrischuck It's important to point your app source to Purify assuming you have something class related going on there. So it may be a matter of tweaking `paths`. Note that...

There's a [new version](https://www.npmjs.com/package/purifycss-webpack) now. Please give that a go.

Ok, cool. That's one of those things I tried to achieve with the boilerplate. It uses a single file for webpack setup (unless you count testing) so it's easier to...

👍 for **update-notifier**. Greenkeeper is too noisy for me. That said, we need a good way to propagate changes like the one that was made to **loader-utils** across repositories. Tackling...

Can you compile a list? Is there a definitive source for these? Would it be possible to consume the correct types from some another type definition for the DOM?

It looks like it's Apache-2. Source: https://github.com/nicojs/typed-html/pull/16#issuecomment-685291152 .

Based on https://github.com/mui/material-ui/issues/23290, you need babel-runtime 7.12.0 or newer for it to work with webpack 5.

I have set the following at [Reactabular](https://github.com/reactabular/reactabular): ``` javascript "rules": { "comma-dangle": ["error", "never"], // personal preference "prefer-arrow-callback": 0, // mocha tests (recommendation) "func-names": 0, // mocha tests (recommendation) "import/no-extraneous-dependencies":...

@ljharb Yeah, I'm not using `_` as private. It's a special case (convention) where I use it to signify a field with special meaning (i.e. something generated). I wouldn't go...