Jack Hsu

Results 109 comments of Jack Hsu

I'm guessing this issue is referring to the working directory and `nameAndDirectoryFormat` changes for the component generators? The best way to create components in a specific directory is to right-click...

We'll bring back the deprecated `file-loader` and add some tests around it. Eventually we'll need to remove `file-loader` since it is deprecated and not updated for 3 years, but we...

@ahernd2 Thanks for reporting. Do you have a small repro for this issue? Which Nx version are you migrating from?

If you use`skipLibCheck` it'll ignore type errors on `d.ts` files, which would solve this issue. It looks like our generated `d.ts` file for `nx` may have an error. We'll check...

It looks like we're using some type aliases in Rust that isn't compiled into the `d.ts` file. We'll need to provide additional annotation to get this working. In the meantime...

@thomassimko Do you have a reprod for this? I have some questions: 1. When do you see this error? During build, during runtime? 2. Is the lib in the same...

@anthonywebb You could try out this [component](https://github.com/jaysoo/react-native-parallax-scroll-view) I wrote. Here's an example using it with `ListView`: https://github.com/jaysoo/react-native-parallax-scroll-view/blob/master/Example/Talks.js#L53-L107 You basically want the `ListView` to be the top-level component, and plug in`ParallaxScrollView`...

I think what we might want to do is add an option in `nx.json` (e.g. `loadDotentFile`), and when generating a Vite app we can set it to `false`. That way,...

Loading a subset of `.env` file isn't supported by `dotenv` AFAIK.