dhall-lang / dhall-haskell

Maintainable configuration files
https://dhall-lang.org/
BSD 3-Clause "New" or "Revised" License
908 stars 211 forks source link

Improved package command #2508

Closed mmhat closed 1 year ago

mmhat commented 1 year ago

You can now include files that reside below the output directory in the package. This is for example useful if you want to include sub-packages in a top-level package, i.e:

> dhall package toplevel.dhall Sub/package.dhall Other/file.dhall
{ toplevel = ./toplevel.dhall
, Sub = ./Sub/package.dhall
, Other.file = ./Other/file.dhall
}