Jeff Fairley
Jeff Fairley
I came here looking for runtime environment variable in Docker, and [`react-env`](https://github.com/beam-australia/react-env) did not disappoint. The one thing that seems unsettled though is how to define `PUBLIC_URL` at runtime. Of...
> I also encountered the same scene. In my scenario, I want all tsx files except for the file name `use***.tsx` to use the pascal case rule, and `use***.tsx` to...
@loeffel-io I'm here looking for something similar. It would be nice to define reject patterns. `index.css` is one example, but similarly, imagine a project using something like SASS or LESS....
I just had a class name collision. My scenario is a custom React component library used by a CRA frontend. - The component library uses `styled-components` and is built with...
@NunoCardoso in your webpack config, are you using the babel- or ts-loader. The macro refers to the babel macros plugin.
@BrunnerLivio I was actually looking into this, but it seems all the database connectors have a corresponding nestjs library (ex: TypeOrm has `@nestjs/typeorm`). From that sense, it's much more than...
Btw, in case anyone comes here and just wants a simple health indicator, I have a Stackoverflow answer for it. https://stackoverflow.com/a/71445270/317951 ```typescript import { Injectable } from "@nestjs/common"; import {...
I don't like the idea of including remote branches in the output. Also, referencing a remote (`origin`) seems like a really bad idea. `origin` is just a convention; a remote...
We're using clappr in an upcoming product. We have other products using video.js. Most things "just work", but I have noticed that seek time feels snappier with clappr. If all...
@vzaidman It works when I do it that way. Good point. A note of value for the README in some fashion... I remember moving away from `require()` and the reason...