Andrew Aladjev

Results 49 comments of Andrew Aladjev

Of course you won't be able to access `store` from context without special dirty hacks like `useStore`. `connected-react-router` has the following dependency: ```js "react-redux": "^6.0.0 || ^7.1.0" ``` It means...

We can see that `react-redux` is not able to provide stable public api that may be used **both** in `connected-react-router` and regular react application. I want to recommend authors of...

I've created right patch using `diff`, I can apply it using `patch -p1`, but I can't apply it using `patch-package` and there is no reason why it fails. It looks...

I've create sample string engine to use "template : { url : '...' }" https://gist.github.com/andrew-aladev/28ae72f892e4df6796a9

@SteveSanderson, @vamp I can't understand how to implement async templates with "new core components". We have `src/templating/templateEngine.js`. There is an example of `makeTemplateSource` ``` ko.templateEngine.prototype['makeTemplateSource'] = function(template, templateDocument) { //...

I've just found a time to review this "components" feature. This does not make any sense. ``` ? ``` ``` function cloneTemplateIntoElement(componentName, componentDefinition, element) { var template = componentDefinition['template']; if...

```js diff --git a/node_modules/react-custom-scrollbars/lib/Scrollbars/index.js b/node_modules/react-custom-scrollbars/lib/Scrollbars/index.js index 4780fee..ac2227e 100644 --- a/node_modules/react-custom-scrollbars/lib/Scrollbars/index.js +++ b/node_modules/react-custom-scrollbars/lib/Scrollbars/index.js @@ -653,6 +653,9 @@ var Scrollbars = function (_Component) { (0, _domCss2["default"])(this.thumbHorizontal, thumbHorizontalStyle); (0, _domCss2["default"])(this.thumbVertical, thumbVerticalStyle); } +...

Same issue. Today `llvm-cov` from llvm 9.0 is not fully compatible with `gcov` from gcc 9.2. I've compiled program using `clang` and tried to use `gcov`, received the following error:...

My solution looks like: ```bash if ([ -n "$CI" ] && [ -n "$TRAVIS" ]); then curl -s "https://codecov.io/bash" > "codecov.sh" chmod +x "codecov.sh" fi ... if (echo "$toolchain" |...

`.gitattributes` is not designed for this purpose. It can support only path. it couldn't support size, mime types, scripts, etc. This is a question for "git-lfs" command why have they...