purescript-parsing-dataview/spago-dev.dhall
2022-12-02 19:14:24 +09:00

25 lines
529 B
Plaintext

-- Spago configuration for running the tests
--
-- See:
-- https://github.com/purescript/spago#devdependencies-testdependencies-or-in-general-a-situation-with-many-configurations
--
-- Usage:
--
-- spago -x test.dhall test
--
let conf = ./spago.dhall
in conf //
{ sources = conf.sources # [ "test/**/*.purs" ]
, dependencies = conf.dependencies #
[ "assert"
, "parsing"
, "console"
, "foldable-traversable"
, "lists"
, "either"
, "web-encoding"
, "exceptions"
]
}