Daniel
Daniel
Passing a [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) to filesize causes an exception (in Chrome 98, but it's probably the same in all other envs too): > Uncaught TypeError: Cannot convert a BigInt value to...
I know, it's all in the readme, but right now users will be quite confused when they fail to setup their app properly since there's no (error) message telling them...
When updating to victory v36.5.1, webpack issues a lot of warnings (159 in my case) with these contents: ``` WARNING in ../node_modules/victory/es/index.js Module Warning (from ../node_modules/react-scripts/node_modules/source-map-loader/dist/cjs.js): Failed to parse source...
Hello there: I've got the following use case: ```css .screenHeight { min-height: 100vh; min-height: -webkit-fill-available; } ``` how do I do this using treat? I was hoping this syntax I've...
Hey there, I just upgraded my project(s) to create-react-app and noticed that treat did not generate any css in dev mode. I'm using `rewrite-create-react-app` and this is the underlying `config-overrides.js`:...
As more and more dependencies are updating to ESM, I've figured it's time to bite the bullet and [make my project ESM-ready](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c#how-can-i-make-my-typescript-project-output-esm) as well. But adding `"type": "module"` to my...
It's perfectly possible via _controlled forms_ so let's add an example recipe! (And here's the almost embarrassing confession that even after three years of using react full-time, I've never had...
given a query like this: ``` SELECT t.val FROM (VALUES ('{"a": 1}'::jsonb), ('{"b": 2}'::jsonb)) t (val) WHERE t.val ? 'b'; ``` I get this error > the # of binded...
This is an updated version of #107 with just the minimal changes. Once this PR is in, it'll be very easy to extend your object's memory in your own `index.d.ts`...
### Describe the bug Hi there! After upgrading to create-react-app v5 which uses webpack 5.73.0, HMR is breaking after almost every save in our monorepo setup. I finally was able...