Moos
Moos
Got it (sorta) working based on comments in #655. Inside the Docker container, modify `/usr/src/lhci/node_modules/@lhci/server/src/api/statistic-definitions.js` to add a line for your category. I added mine just above the `performance` one:...
+1 -- I have a custom Lighthouse config in my `lighthouserc.js`: ``` module.exports = { ci: { // [snip] settings: { configPath: './lighthouse-config.js', } }, }; ``` Trying `const constants...
As already mentioned, WordNet module is bare bones and notoriously underperforming except for simple lookups. You may want to look at https://github.com/moos/wordpos, built on top of natural's WordNet, with optimized...
natural opens the index file on each lookup, and if you've got thousands of simultaneous lookups, that's how many open files you'll have. [wordpos](https://github.com/moos/wordpos) is optimized for multiple async reads...
I think wordpos already solves this problem -- not only that its 'fastIndex' provides 30x performance boost over natural's WordNet methods. I'm happy to contribute any or all parts of...
same here (win7 x64) ... but if you don't touch the dropdown, it seems to work anyway!!
Also doesn't work for me -- I select a color but the preview doesn't change, nor does it apply any change to the window. Project-Color 1.3.2 IntelliJ 2021.2.3 macOS Catalina...
Maybe similar issue with 23.1.0 reported in https://github.com/jackocnr/intl-tel-input/issues/1558#issuecomment-2195640989.
I tried node 16.x, same thing. The issue was with `jest` not supporting `exports`. I've updated the link above.