Arkadiusz Czekajski
Arkadiusz Czekajski
It would be nice to have a `prevLocation` also available in `LOCATION_CHANGE` action. Now if you want to save the previous location in store, you also have to save a...
Currently, if remote server returns response encoded with brotli algorithm (and sends header `content-encoding` set to `br`), the library does nothing to the response which is passed to `userResDecorator`. In...
In CSS, it is possible to escape characters to use them in class name. For example if you want a class name that starts with a digit, say "1st", it...
### Are you submitting a **bug report** or a **feature request**? Bug report or request for making clear in docs that doing the following is forbidden ### What is the...
Hi! Just wanted to ask if there are any known cases of this plugin being successfully used with next.js? 😊 Asking because I've seen cases where next.js might encounter problems...
I have a folder `.foo` directly in project root with some modules in it. Somewhere else in the project I do a non-relative import: ```ts import { baz } from...
Currently the `storybook-readme` library directly depends on `@storybook/components@5` which in turn has various dependencies that does not support React 17. `@storybook/components@6` is upgraded in a way that it supports `^16.8.0...
I have following terminal defined which has relatively long command: ```json { "name": "storybook here", "command": "npm run storybook:watch -- $(winpty -Xallow-non-tty -Xplain node C:/PROJECTS/foo/some-script.mjs \"[relativeFile]\")", "open": "true", "onlySingle": "true"...
When invoking `modInverse` on `BigInteger` object representing negative number, library seems to fall into an infinite loop. **Example code:** ```js new BigInteger('-3').modInverse(new BigInteger('2')); ``` **Expected behaviour:** Return a value **Actual...