silverwind

Results 1234 comments of silverwind
trafficstars

`npm link` just installs a symlink from `node_modules/package` to the folder, e.g. I do `npm link module@./module`. I will provide a reproduction later to allow, the root cause could be...

Yes exactly. In fact I already have these peerDependencies set in Module A, but it didn't help: ```json "peerDependencies": { "react": "^18.3.1", "react-dom": "^18.3.1" } ``` Module B has: ```json...

Yes, pausing the timer (as opposed to completely stopping, which I was initially suggesting) sounds like the best approach, and I agree it could be enabled by default. > Regarding...

The thing is this addons modifies tooltips only, and if there is no tooltip it's questionable to create one and also where it would be added.

Which WoW version is this on? Any errors visible?

Still an issue? Also check the options panel of the addon that the relevant ids are actually enabled.

Odd error, the addon doesn't even do any integer mathematics that could result in integer overflow. I suspect a blizzard bug, but maybe I can reproduce later and guard for...

> flat configs on a new flatConfigs export I like it personally as well as I find `configs['flat/recommended']` a bit ugly.

> Are the unit tests in this repo supposed to be passing? I noticed they failed in my branch, and so I checked out current `master` branch, and they're also...

Would it be possible to port the `disableScc` option to this plugin? https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-cycle.md#disablescc In one of my repos, I had a 20x speed gain with `disableScc: true`, but I guess...