Maxime Quandalle

Results 172 comments of Maxime Quandalle

I'm also experiencing this issue with a package I've authored, and I don't understand how to build this package to avoid this issue. - built using `tsc` typescript compiler https://github.com/betagouv/publicodes/blob/master/packages/react-ui/tsconfig.json...

Thanks you @sodatea for the detailed write up. I've found that the PR that introduced this feature in esbuild provide some interesting additional context https://github.com/evanw/esbuild/pull/1849#issue-1079368644 I agree that the behavior...

I agree with @PEM-- about AOP For instance if you want specific code for mobile you can use a constant in your code: ``` js if (App.isMobile) { console.log("I'm a...

Did anyone fund a solution to support the `css` prop on a ViteJS/ESBuild application?

If we want _latency compensation_ for `autoValue` fields, we need to run both server and client computation in parallel, ie don't wait for the `autoValue` fields on the client before...

I have a Typescript error related to `worker-loader` that I don't know how to fix. I use the following definition as described in the documentation : ```ts declare module '*.worker.js'...

@dantrain Is it already possible to have responsive columns by using a custom layout function?

Indeed it works better with the use of cookies, but it seems that clarity still "reset" the whole app on every page change which takes a few seconds in the...

Actually Blaze doesn't support case statements. Since I don't want to add some runtime overhead, the jade compiler will have to internally transform the `case` block in `if`/`else` blocks. This...