matpen
matpen
When importing `json-schema-yup-transformer` as of version `1.6.8`: ```js import convertToYup from 'json-schema-yup-transformer'; // or with CJS: const convertToYup = require('json-schema-yup-transformer'); ``` the following error happens: ``` /tmp/test/node_modules/json-schema-yup-transformer/dist/schema/utils.js:29 [_1.DataTypes.STRING]: isString_1.default, ^...
The current implementation of `exclusiveMinimum` and `exclusiveMaximum` incorrectly assumes integer values. Improved to consider real numbers. Please note that the test suite still passes. However, it was tested against `v1.6.4`...
The keyword `exclusiveMaximum` was duplicated in the README, under the list of supported features: `exclusiveMinimum` was probably the intended replacement.
I found that when calling `updateData()` and `updateOrAddData()` with an empty array, the promise is never resolved. This is because the current code tests for a falsey input, which does...
### Summary According to my tests, the validation with nested object behaves in two different ways: * keys are actually nested (as expected) when validating the whole form (eg. on...
### Summary As of `v2.0.1`, `svelte-forms-lib` is [built with svelte 3.40](https://github.com/tjinauyeung/svelte-forms-lib/blob/7df1b1df4f02c5ff512e2542c879056ac2d8138d/package.json#L77), which is affected by the bug reported in https://github.com/sveltejs/svelte/issues/6584. I am experiencing the error described therein when using [helper...
I am trying to install `[email protected]` on Ubuntu 22.04, which [depends](https://github.com/akira-cn/node-canvas-webgl/blob/d1855c1211a6a41a49cabb7fbb46a7867c240d02/package.json#L26) on `gl@^4.4.0`. The build fails due to the problem reported in https://github.com/stackgl/headless-gl/issues/214#issue-902415349. This seems to affect Debian 11, too...
After upgrading from `1.6.8` to `1.6.11` the following error happens in my project: ``` number.js:123 Uncaught (in promise) TypeError: required?.join is not a function at createBaseNumberSchema (number.js:123:1) at Object.createNumberSchema [as...
For my use case, I would need a way to route requests dynamically based on username (and possibly other token features). For example, user A will be routed to `http://127.0.0.1:8001`...
I set up a simple test where the following happens: 1. on client-side, we connect to the server with `EventSource`; 2. the server will start sending events, once every two...