If I have a file `hello.yaml`: ```yaml hello: world ``` It currently evaluates to the PlatformScript value `false` ``` $ pls ./hello.yaml false ``` Instead, it should evaluate to the yaml itself. ``` $ pls ./hello.yaml hello: world ```
If I have a file
hello.yaml:It currently evaluates to the PlatformScript value
falseInstead, it should evaluate to the yaml itself.