I get the following warning when doing spago install some-package
Failed to add dependencies. The dependencies field wasn't a List of Strings.
Spago installs (downloads) the package but, but it doesn't modify the list of packages.
The spago.dhall is:
let package1 = ./packages/package1/spago.dhall
in { name = "monorepo"
, dependencies =
[ "aff"
, "affjax"
]
# package1.dependencies
, packages = ./packages.dhall
, sources =
[ "packages/**/src/**/*.purs"
]
}
Though I can add the package to the list manually, and it will work, I wonder why spago doesn't support this kind of dependencies config while installation, it is a legal dhall.
I get the following warning when doing
spago install some-packageSpago installs (downloads) the package but, but it doesn't modify the list of packages.
The spago.dhall is:
Though I can add the package to the list manually, and it will work, I wonder why spago doesn't support this kind of dependencies config while installation, it is a legal dhall.