Vladimir Grenaderov

Results 47 comments of Vladimir Grenaderov

@aduh95 , at first - thank you for support! ) BTW, it doesn't work: ``` NODE_OPTIONS=--experimental-vm-modules yarn constraints Type Error: import_meta.resolve is not a function at importModuleDynamically (/Users/xxx/.nvm/versions/node/v22.0.0-nightly202402068a41d9b636/lib/node_modules/corepack/dist/lib/corepack.cjs:39583:39) at importModuleDynamicallyWrapper...

No ) @aduh95 it works. but `{url}` is undefined, and the whole second argument is ``` Script { cachedData: , cachedDataProduced: true, sourceMapURL: undefined } ``` According to docs, it's...

It works according to [specs](https://nodejs.org/api/async_context.html#class-asynclocalstorage), you just need to replace the whole $.env object like that: ```js $.env = { ...process.env, FOO: "BAR" }; ```

@gustafc try `yarn npm login --always-auth`. As far as I remember, yarn has a problems with merging authorization settings comes from ~/.yarnrc.yml & project .yarnrc.yml: auth settings treated like a...

> I would like to think about this topic and maybe research what support policies other projects are using. Yeah, you can treat this issue as a trigger ) It's...

Nice! Idea is the same - split legacy and modern code, just by a different way. So I totally agree ) BTW, lint-staged updated too: PS just one question (offtopic...)...

> this is not related really but just sharing this one also https://github.com/cypress-io/cypress/issues / 22355#issuecomment-1261096063 It's a common OSS problem - as a developer, you can freeze your setup and...

@viveleroi c8 doesn't work with TS, because Node.js doesn't support TS. So, please provide .js source which is not covered, or complete setup (tsconfig, etc.) to reproduce it.

@viveleroi it's a bit funny because you have 'noEmit: true' in tsconfig ) Sourcemaps are not enabled too. Ok, lets add all necessary things: ```json { "compilerOptions": { "target": "ESNext",...

Sure, I mean only provided configuration is funny, not the problem itself - which is may be very annoying and frustrating. BTW, we found one fact: in given setup c8...