-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspago.template.dhall
More file actions
40 lines (39 loc) · 965 Bytes
/
spago.template.dhall
File metadata and controls
40 lines (39 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{-
{{GENERATED_DOC}}
The `formlet` package contains the core definitions for the `formlet` abstraction.
Definitions of specific forms and their rendering implementations do not belong
in this package.
-}
let
name = "formlet"
in
{ name
, dependencies =
[ "arrays"
, "const"
, "control"
, "foldable-traversable"
, "identity"
, "integers"
, "newtype"
, "numbers"
, "option"
, "ordered-collections"
, "pre"
, "prelude"
, "profunctor"
, "profunctor-lenses"
, "quickcheck"
, "record"
, "strings"
, "test-unit"
, "transformers"
, "validation"
, "variant"
]
-- This path is relative to config file
, packages = {{PACKAGES_DIR}}/packages.dhall
-- This path is relative to project root
-- See https://github.com/purescript/spago/issues/648
, sources = [ "{{SOURCES_DIR}}/src/**/*.purs", "{{SOURCES_DIR}}/test/**/*.purs" ]
}