olsonpm

Results 58 comments of olsonpm

> I think cosmiconfig would look for files named ".prettierignorerc". So it's not really the right tool for this job. cosmiconfig can be configured to look for whatever file names...

[here's the full output of those two commands](https://privatebin.net/?003cd9256f8b2c9b#3QBAqzC6knyE1cwWbFj7xSxhrJqsxTtx8suenoevRCem) but the issue is with the original `sudo pacman -Syu`, i.e. if I rerun `sudo pacman -Syu` then the output says everything's...

I reached this same error when attempting to connect my store. Had to turn off hpos to get it working. Please merge this in so others don't waste time stumbling...

@nerrad thanks for offering - if a PR was all that was needed, [here it is for review](https://github.com/woocommerce/woocommerce/pull/48476)

Looks like the patches released since v9 are cherry-picked commits. I assume it'l go out once v9 settles

``` return this.getFromAPI("things") .then(function(modelsFromAPI) { return Lazy(modelsFromAPI).map(function(apiModel) { return MyModel.fromAPI(apiModel); }).toArray(); }); ``` I rewrote your given code so I could understand it better. I'm still confused at what "return...

The below code is what you're after correct? I'm not a maintainer but personally I've been adding extensions to a separate file (e.g. lazy-extensions.js) then requiring that file instead. This...

Agreed - I also think it would be cool to pass in an array of error types which you deem as 'okay' to keep iterating, and if other unexpected errors...

For sure. And the hard part would definitely be defining what belongs in the core library, what belongs in a 'core' extension, and what you should leave people to write...

I've looked at the code-base, and I've had the same thought myself in terms of how nice it would be to have chained sequence transformations separate from the sequence itself....