pkl icon indicating copy to clipboard operation
pkl copied to clipboard

A configuration as code language with rich validation and tooling.

Results 198 pkl issues
Sort by recently updated
recently updated
newest added

```groovy x = new { ["one"] = 1 ["two"] = this["one"] + 1 } y = (x) { for (k, v in x) { [k] = v + 1 }...

bug

Searching the standard library docs, I noticed that I always land at the top of the page, not at the function I search for. For example, searching for `sort` takes...

Right now resolving packages doesn't store packages in the cache. This is in some situations problematic because "fully offline use" is not possible with the current implementation. Except of the...

Iam using pkl files for config and generated go files for it. In the process of loading config Iam using LoadFromPath() this function expects a pkl file as parameter so...

Hi, As shown example below, entries of which key matches with an element index will be deleted. ```pkl foo { [0] = 2; 3 } bar = foo[0] ``` ```console...

https://github.com/apple/pkl/issues/new java.lang.NullPointerException –– Pkl Error –– None (cause has no message) 95 | renderer = ^^^^^^^^ at pkl.base#Module.output.renderer (https://github.com/apple/pkl/blob/0.25.2/stdlib/base.pkl#L95) 106 | text = renderer.renderDocument(value) ^^^^^^^^ at pkl.base#Module.output.text (https://github.com/apple/pkl/blob/0.25.2/stdlib/base.pkl#L106) Pkl 0.25.2...

Trying to type nested objects seems unnecessarily verbose. According to the documentation, typing objects is possible via classes or modules. In order to type an object with nested properties, at...

It would be nice if we could alias package imports. What I do now: ```pkl amends "package://github.com/aws-cloudformation/rain/releases/download/v1.8.2-alpha1/[email protected]#/template.pkl" import "package://github.com/aws-cloudformation/rain/releases/download/v1.8.2-alpha1/[email protected]#/aws/s3/bucket.pkl" Description = "testing imports" Resources { ["Foo"] = new { Type...

Not sure if I am doing something wrong, but here it goes. Here is the file structure ``` base | - foo.pkl | - PklProject | - bar | -...

bug

I want to add a badge to my README file that shows the latest version that consumers can use. Similar to other badges supported by https://shields.io I guess a Pkl...