Dan Rose
Dan Rose
Right now, the master branch has a copy of the docs per version. This is a pain because doing a naive search in the source tree brings up duplicate results...
I'm trying to loop over an NDArray coordinates, and it seems like iteration needs an overhaul. - `NDArray` is not iterable (so `for (x of my_ndarray)` and `Array.from(myNdArray)` throw errors)...
The `axpy` test checks that the return value of `axpy` is the same as the return value of `nblas.daxpy`. These functions actually have return type `void` so the check is...
Decouple different snapshot functionality ## Description e.g. The plugin architecture is defined with multiple subparts. This plugin allows implementing those separately - e.g. you can use a different serializer from...
**Describe the bug** `SingleFileSnapshotExtension` crashes when trying to serialize a Dict with a number value. **To reproduce** run `pytest --snapshot-update` on a file containing the below test: ```python from syrupy.extensions.single_file...
I have a property typed as `PerspectiveCamera | OrthographicCamera`. Trying to distinguish based on camera type `if (camera.isOrthographicCamera)` doesn't work: > Property 'isOrthographicCamera' does not exist on type 'PerspectiveCamera |...
Expanded defaultAssetUrlOptions to include other asset-linking attributes
`package.json` lists `"module": "nise.js"` as an entrypoint, but the `nise.js` file is a UMD module, not a ES module. Additionally, the shape of the module when I use a ESM...
1. Convert tests over to ESM. Note that this also required switching from ts-node to tsx (which supports esm better) 2. add "type":"module" to package.json so that importing dist/*.js works