Daniel Chao

Results 256 comments of Daniel Chao

@giordano-newday: We don't have a great way to model most union types as Kotlin, because it's missing anonymous sum types. However, typealiases of string literal unions are a special case,...

It makes sense to have Kustomize templates, since Kustomize support ships with `kubectl`. For what it's worth, Kustomize and Pkl both serve the same purpose; to produce Kubernetes YAML to...

Yeah, I agree, we'll provide something here.

Good timing; we just submitted https://github.com/apple/pkl-pantry/pull/12 that adds support for this!

That PR has landed. You can generate Pkl schema from JSON Schema; for example: ``` pkl eval package://pkg.pkl-lang.org/pkl-pantry/[email protected]#/generate.pkl -m . -p source="https://json.schemastore.org/github-action.json" ``` Note: depending on the input JSON Schema,...

We don't get have a Pkl -> JSON Schema generator, but we do have one for OpenAPI v3.1 Schema, which is mostly compatible with JSON Schema. See the details here:...

What error do you see when you try to run pkl?

The intricacies of Gradle aren't my area of expertise. However, I tried building locally without editing any of the `mavenCentral` files, and it is passing on my machine. Have you...

From someone more knowledgable than me about Gradle: > first of all, using dependencies is not a fully comprehensive way to determine all dependencies of a build. the dependencies output...

Have you tried just running the dependencies command, and then re-building in offline mode? I've found that I can build in offline mode just fine. Or is that not good...