Thomas Lefebvre

Results 16 comments of Thomas Lefebvre

[Automat.ai](http://www.automat.ai/)

We're faced with the same issue. For now we've patched the local node-modules through [`patch-package`](https://github.com/ds300/patch-package) ```diff -let { useCallback, useState, useLayoutEffect } = require('react') +let { useCallback, useState, useLayoutEffect, useEffect...

We're running onto this issue as well. We have two workflows: - `build.yml` which creates a deployment on Github with a `ref` attached to the current commit being built -...

@KingScooty Funny enough, webpack has documentation to exclude the locales from the bundle. https://webpack.js.org/plugins/ignore-plugin/#ignore-moment-locales

Sounds good. Regarding the eslint config, it's running through the create-react-app server CLI, although I can't seem to have it running directly in my editor. Probably because there isn't any...

For anyone looking to quickly workaround this issue, we've changed our implementation of `getSectionSuggestions` like the following ```diff -declare const getSectionSuggestions: (s: Section) => Array +declare const getSectionSuggestions: (s: Section...

@pav-w Sorry if this wasn't clear. It looks like under React 18 your `getSectionSuggestions` callback can now be called with `undefined` which I believe is a bug from this library....

@datner How would nix help solving this problem? I'm a too running nix but I'm only using it to have the `rustup` dependency here. I feel this is due to...

@datner I was able to make this work as well having a somewhat similar flake file as yours. Thank you! For reference, this is what I ended up using ```...

Would you mind providing a small code snippet to illustrate your idea? I'm not sure I fully understand.