Jan Killian
Jan Killian
Yes. And you're right, I use `inspect with logging libs, but here it does not make sense, `console.log` itself displays the data even better, highlighted and with expandable class props...
@lukehaas yes, I saw it, that's awesome 👍
Did not work as expected for me, `.js` extensions were used for `.tsx` files, which is not correct for ` "jsx": "react-jsx"` in `tsconfig.json`
@privatenumber should also work for includes like - `.env*` (common) - `./.env*` - `.etc/*` (config jsons) - needs to remove the ignored dotdirs glob `**/.*/**` - `.etc/.env*` (config jsons) -...
@privatenumber good, looked into it a bit. Currently, chokidar watch ignored option [supports](https://github.com/paulmillr/chokidar#path-filtering) anymatch `Array|String|RegExp|Function` [matchers](https://github.com/micromatch/anymatch#anymatchmatchers-teststring-returnindex-options) , but it's [going](https://github.com/paulmillr/chokidar/issues/1225#issuecomment-2203876987) to narrow down to `RegExp|Function` in v4. Also, the chokidar...
Nice fix, thanks @maticzav Is there anything blocking a release? It's the only blocker on our project, because Node.js 23.0.0 [removed](https://nodejs.org/api/deprecations.html#DEP0058) `util.isUndefined` for good. For anybody with the same issue,...
Tested **Workaround / Proof of concept:** 1. Move the shims `sudo mv "%UserProfile%\.nvmd\bin" "%ProgramFiles%\NVM Deskop"` 2. Insert them to global system PATH `setx /m path "%ProgramFiles%\NVM Deskop\bin;%PATH%"` 3. Restart your...
@1111mp raising the priority by default is not needed. The important part is allowing user to do so if he has multiple Node installs, e.g. Node installed already from the...
Ah, you're correct, `%UserProfile%\.nvmd\bin` can be placed to **system** PATH as well. Many thanks for your help and for a great tool🔥
Hi @1111mp I tested the `C:\Users\\.nvmd\bin` added to system PATH by NVM Desktop once again, as user folder in system PATH is quite unusual. There's issue on Windows desktops with...