pkl
pkl copied to clipboard
A configuration as code language with rich validation and tooling.
Currently in the language reference the following solution for removing fields is recommended: ```pkl // https://pkl-lang.org/main/current/language-reference/index.html#transforming-objects dodo { name = "Dodo" extinct = true } dodo .toMap() .remove("name") .toDynamic() ```...
Implement the same (or most of) [features that IntelliJ have](https://pkl-lang.org/intellij/current/highlights.html)
Code: ```pkl hidden xs = new Listing { 1 2 3 } object { for (x in xs) { local plusOne = x + 1 plusOne } } ``` On...
There should be a `GET_VERSION` and a `GET_SCHEMA_VERSION` command defined on `pkl-server`, so-as to get versions from the server itself (instead of running the CLI separately)
I didn't see MacPorts as an option for installing Pkl. Are there any plans for an official MacPorts port of Pkl?
I wanted to try the new windows native version today and windows defender triggered with a virus detection warning: Trojan:Win32/Wacatac.B!ml I hope this is a false positive?
This fixes an issue where package dependencies are not rendered correctly. This also changes the names shown for these dependencies. Before: `fruits` After: `localhost:0/fruits`
The result of a `const` member cannot be late-bound, so its values should be cached for all children in the prototype chain. As an observable effect, this should only result...
I needed to preload a PKL file, that has a `@(...)` convention that my code will translate to `\(...)` later. The "@( ... )" is a reference import that will...
[SPICE-0009](https://github.com/apple/pkl-evolution/pull/10) Includes the changes from https://github.com/apple/pkl/pull/640