Alexander Tkachev

Results 51 comments of Alexander Tkachev

Gatsby already supports almost every possible character in the path. So I'd try to fix this issue. I already tried to add some tests to Gatsby source, but... Gatsby is...

Uh, it took me several hours to find this. My current workaround: extend `Form` class and override `componentWillReceiveProps` to call the parent method only if it is really required.

@affan-speridian ```js import Form from 'react-jsonschema-form'; class FixedForm extends Form { componentWillReceiveProps(nextProps) { const shouldSkipUpdate = Object.keys(nextProps).length === Object.keys(this.props).length && Object.keys(nextProps).filter( key => key !== 'children' && // Maybe some...

In my case it still does not work. But the external-host-error joined the timeout party https://app.renovatebot.com/dashboard#github/AmazeeLabs/silverback-mono

> @Leksat did you remove your timeout settings? I removed the `hostRules.timeout` setting and it looks good now. Thank you!

> forcing the patching of that package somehow in the post-create-project-cmd step or maybe also in the pre-install-cmd and pre-update-cmd steps I know only these ways to patch a package:...

Really low chances that this was a trolling. They implemented request sanitization instead of fixing the real problem - to make it harder to create an exploit, - to make...

I met the same limitation and was able to workaround it with a symbolic link. Hacky, but works 🙂

I also noticed that `pnpm deploy` ignores paths specified in `.gitignore`. Is this by design? Should it be noted in the command docs? I was able to workaround this with...

In my case this started to happen both on GitHub CI and locally ~after a major update of `axios`~. In my setup I was starting Drupal dev server on `127.0.0.1`...