David Konsumer
David Konsumer
My issue seems like #195 so maybe that is a better place to track it. I originally had the error of OP, but locking in versions caused that.
@macorifice same as me. I think it's tracked in #195
@macorifice Not sure what you mean. I got same error, and it also didn't start. I just gave detailed instructions to test with docker with the suggested versions.
@gauravnumber I got it to run `init`, but it failed to run `dev`. What versions of things are you using? Here is my test procedure: ``` docker run -v ${PWD}:/app...
@gauravnumber That is using latest stable, but I'm fine with alpha, too, though. This does seem to start: ``` docker run -p 8080:8080 -v ${PWD}:/app --workdir=/app/testrun -it --init hayd/alpine-deno:1.9.2 run...
Huh, nevermind, maybe it is working. The `--init` flag seemed lock up my terminal on mac, so I killed the docker daemon, and restarted, and ran the same command again....
I would like to see `defaultValue` allow derived-fields, too. Like this: ```js import { defineSchema, defineConfig } from 'tinacms' import slugify from 'slugify' const schema = defineSchema({ collections: [ {...
For me, this seems ideal, similar to how `isBody` and `isTitle` allow tina to make assumptions about the purpose of the field. Like for example the `isBody` field doesn't get...
I agree, but that is already true for other fields. However it works, I suggest it should match regular fields, so you don't have to do something funny on internal...
It's a glaring issue in contrast with relay, which [has this](https://graphql.org/learn/pagination/). As it is I see no way to paginate with only the number, and passing cursors in the URL...