Library references
Getting started
- Add
mofram-lib
dependency tovessel.dhall
in your project:
{
dependencies = [ "base", "mofram-lib" ],
compiler = None Text
}
- Include additional package source to a
package-set.dhall
:
additions =
[
{
name = "mofram-lib",
repo = "https://github.com/caya-ventures/mofram-lib.git",
version = "main",
dependencies = ["base"]
}
] : List Package
- Add
packtool
parameter todfx.json
file:
"defaults": {
"build": {
"packtool": "vessel sources"
}
}