Alexander Kachkaev

Results 463 comments of Alexander Kachkaev

The `dot` option is `true` by default in v5 🎉 Release notes: https://github.com/actions/labeler/releases/tag/v5.0.0

I believe that this is happening in v4 via https://github.com/amzn/style-dictionary/pull/1100.

👋 @micobarac! Have you found any open-source libs or tools that could auto-detect shade? I’m looking for this as well. Here is something along the lines: https://materialpalettes.com/

Upgrading to Yarn 3 is blocked by the lack of Dependabot support: https://github.com/dependabot/dependabot-core/issues/1297

Dependabot is not compatible with Yarn 3’s `yarn.lock` format. Unfortunately, it does not work with `nodeLinker: node-modules` too.

Thanks @seiyab! Feel free to create a new issue for v3.0 if it’s not being tracked already. Let’s close this one as it’s 2+ years old and is somewhat outdated.

👋 @sagargurtu! How did `[email protected]` fix the issue for you? I tried removing the `as typeof` hack in https://github.com/kachkaev/njt/pull/186/commits/2696db0a519e2e990d9c3e0b69113b4e580b4d2f (part of https://github.com/kachkaev/njt/pull/186) but this made `tsc` [fail](https://github.com/kachkaev/njt/actions/runs/3974992619/jobs/6814578731#step:8:1) as before.

I would probably summarize this bug via these steps: 1. Set `"moduleResolution": "NodeNext"` in `tsconfig.json` 1. Type ```js import X from "x"; new X(); ``` or ```js import y from...

Thanks @RyanCavanaugh! Yep, you are right – the problem is with incorrect upstream typings. In an ideal world, the ecosystem would be ESM-ready and we would not have this problem...

Looking at the comparison table between `bundler` and `NodeNext` in https://github.com/microsoft/TypeScript/pull/51669, I’m not sure if `bundler` is as desired as `NodeNext` in a bunch of cases. It still enables extensionless...