digeomel

Results 39 comments of digeomel

Ok, this seems to work for me (from line.py, lines 204-214): ``` def generate_webcolors(self): """Generates a list of web color names.""" self.WEB_COLORS = dict((name, color) for (name, color) in css3_names_to_hex.items())...

In retrospect the regex can be improved a little bit more like this: `self.WEB_COLORS_REGEX = '[\\s:](' + '|'.join(self.WEB_COLORS.keys()) + ')[\\s;]'` But by now you get the point :smile:

I just stumbled across the same bug. We're using the RxJs `forkJoin` method, which used to allow multiple observable parameters, as such: `forkJoin(a$, b$, c$)` but now is deprecated in...

@ljharb that's unfortunate, because that's a breaking change for us, moving from tslint. I can see now why the Angular team is still stuck to tslint. Makes me think of...

I'm getting similar results on an angular-eslint project: ``` Rule | Time (ms) | Relative :----------------------------------------|----------:|--------: import/namespace | 4511.714 | 97.9% import/no-unresolved | 70.773 | 1.5% import/no-duplicates | 12.654 |...

Hello, and thank you for a great app! 😄 👍 Indeed, I can get over it by clicking on the "More info" link, but I think this might deter a...

I seem to be having a similar issue in Windows. ``` λ ncu -g [====================] 1/1 100% @angular/cli 6.0.8 → 8.3.12 ncu itself cannot upgrade global packages. Run the following...

After reading the two threads carefully, I got it to work like this: `ncu -g --prefix /c/Users/geomedi/AppData/Local/npm` Still, I don't understand why it doesn't pick up the prefix by default.

I've forked the repo and debugged it. I traced it down to this line: https://github.com/tjunnone/npm-check-updates/blob/7b0d321a39b5325148d033e20b335ec6490ab98b/lib/package-managers/npm.js#L155 Which basically says that if the platform is win32 and I'm checking global packages and...

@raineorshine thank you for the quick response! 😄 I can confirm that ncu@next works as expected on both global and local packages on my Windows 10 system. 👍 On another...