curtvict

Results 24 comments of curtvict

@tphinney I'm going to try another run at including these fonts to @fontsource this week. Would we be able to get these fonts uploaded to this repo this week? It...

Thanks for the response @tphinney. I'm curious if @EsoFromTheEast has any ideas :)

@ayuhito oh heck yeah, that works. Switching my user agent to `Mozilla/4.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36` and hitting https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200 produces ![image](https://user-images.githubusercontent.com/96080054/184263522-f31daaef-9781-4fef-b66e-9c6be84e7cb9.png)

I'm happy to take a stab at an implementation of this. Adding an actual `onClick` prop might be confusing, though, since we'd need to explain that `onClick` is not recommended...

> none of the generated files should be manually edited afterwards... Packages are automatically regenerated using its old metadata when we need to force rebuild the entire repo to apply...

I might be hitting a similar issue. When I run `yarn test` (which is the package script `TZ=America/New_York craco test`), locally everything works. But in GH Actions with the same...

Continuing from above, this looks to be fixed in the latest version of `cosmiconfig-typescript-loader`: https://github.com/Codex-/cosmiconfig-typescript-loader/blob/main/package.json#L36-L41 Is there a reason why [we're pegged at v1.0.0](https://github.com/dilanx/craco/blob/master/packages/craco/package.json#L44) and aren't using [the latest release](https://github.com/Codex-/cosmiconfig-typescript-loader/releases/tag/4.1.1)?

Ah, I was on the wrong branch. Thanks for pointing that out! I'll see if I can get this fixed upstream. Thanks again for your hard work on this.

Yep, for me too; I was able to remove `ts-node` as a dev dependency after this update and still successfully build the app.

Trying out v7.0.0-alpha.8 and documenting as I go. Starting with a practically empty config file: ```js module.exports = { babel: { plugins: [], }, }; ``` The first thing I...