You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implicit <taskName>GetImports task will attempt to analyze the imports of a package, which fails with:
* What went wrong:
Execution failed for task ':pkldocGatherImports'.
> –– Pkl Error ––
Module URI `package://pkg.pkl-lang.org/pkl-pantry/pkl.toml@1.0.0` has invalid syntax.
The workaround for now is to set transitiveModules explicitly to something, which disables the GetImports task dependency.
To fix this: we only need to analyze the imports of file: URIs. There is little chance that non-file URIs can import file URIs, because Pkl's default security manager disallows this.
The text was updated successfully, but these errors were encountered:
This is a regression:
In the following:
The implicit
<taskName>GetImports
task will attempt to analyze the imports of a package, which fails with:The workaround for now is to set
transitiveModules
explicitly to something, which disables theGetImports
task dependency.To fix this: we only need to analyze the imports of
file:
URIs. There is little chance that non-file URIs can import file URIs, because Pkl's default security manager disallows this.The text was updated successfully, but these errors were encountered: