Tyler Martinez

Results 12 issues of Tyler Martinez

Very interested in trying this library but I'm thinking that the current implementation doesn't match the readme. Do you have a working example hosted anywhere?

Instead of having migrations clogging up the root would be great to have them in `migrations/` as a default and allow for a CLI option to set the directory

Love the library but this one detail is preventing me from adopting it. Consider Jest's implemention of `mockImplementationOnce` https://jestjs.io/docs/en/mock-function-api.html#mockfnmockimplementationoncefn ```js const myMockFn = jest .fn() .mockImplementationOnce(cb => cb(null, true)) .mockImplementationOnce(cb...

major-version-candidate

``` Error: Library "sub" is private, it cannot be a dependency of a public library. You need to give "sub" a public name. ```

Really like the patterns `react-hold` exposes. Any thoughts on SSR support?

Example ```js import { Model } from 'tectonic'; class SomethingModel extends Model { static modelName = 'something'; static fields = { description: undefined, id: undefined, name: undefined, }; } export...

Ok this is a complex one so bear with me... I have a `RecordBuilder` component which is rendered by a route with path 'some-models/:someModelId'. This component handles the creation of...

**Reproduction** Here's an example test I've used to validate the problem: ```ts import { waitFor } from '@testing-library/dom'; import nock from 'nock'; import nodeFetch from 'node-fetch'; import { PassThrough }...

bug

In this example both the `Text` and `Rectangle` have `y` set to 0. Fast / Canvas SVG (which is rendering correctly) Anyone else experienced this? I know y'all core contributors...