Benny Neugebauer
Benny Neugebauer
Hi @mrexox and thank you for your fast feedback. It helped me to narrow down the problem... I am using Windows 11 and the [Windows Subsystem for Linux](https://www.youtube.com/watch?v=bRW5r7TK6KM). My SmartGit...
@CRC32EX thank you for the tip! I tried it using a Shell script but I am getting the same error. With a shell script I also didn't find an opportunity...
I am also using "vitest" in some of my project and the "Jest Runner" thinks these are Jest tests and renders a "Run" button. When clicking the "Run" button the...
I built a tool (`ts2esm`) which adds explicit file extensions to relative import paths in TypeScript projects. It also adds JSON Import Assertions. The code is open source and tested,...
Getting this integrated would be a big enabler. Is there any workaround for me as a developer to set headers on the SDK? Can I access some internal variables or...
Yes, retyping the name helps indeed!
**CJS Input:** ```ts import omit from 'lodash/omit'; import {HttpsError} from 'firebase-functions/v1/https'; const object = {a: 1, b: '2', c: 3}; omit(object, ['a', 'c']); export function logError() { console.log(HttpsError); } ```...
Zip support is mandatory to use [Yarn](https://yarnpkg.com) as a full [Bower](https://bower.io) replacement. In my `bower.json` file I am having the following dependency, which I cannot resolve with `yarn` (😢): ```json...
@ghiscoding thank you for your help! I had `"conventional-changelog-conventionalcommits": "^8.0.0"` installed but it was indeed not working: > lerna info getChangelogConfig Auto-prefixing conventional-changelog preset "conventionalcommits" > > lerna verb getChangelogConfig...
I made a video showing the error: https://www.youtube.com/watch?v=eHspbQGqGE4 It happens when I rename the directories of my snapshot files. In my test cases I assemble paths using `path.join`: ```ts it('fixes...