mirror of
https://github.com/rowtype-yoga/purescript-parsing-dataview.git
synced 2024-11-25 20:12:42 +03:00
25 lines
529 B
Plaintext
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"
|
|
]
|
|
} |