purescript-parsing-dataview/spago-dev.dhall

25 lines
529 B
Plaintext
Raw Normal View History

2020-07-27 12:27:48 +03:00
-- 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"
2021-07-21 05:31:36 +03:00
, "console"
, "foldable-traversable"
, "lists"
, "either"
2022-12-02 13:13:39 +03:00
, "web-encoding"
, "exceptions"
2020-07-27 12:27:48 +03:00
]
}