Skip to content

Commit 350ccc3

Browse files
committed
spago configuration for purescript 0.14.1
Set spago repository to the fork https://github.com/jamesdbrock/purescript-float32.git I hope that Athan Clark will reclaim his package and set the repository back to https://github.com/athanclark/purescript-float32.git Split spago.dhall and test.dhall https://github.com/purescript/spago#devdependencies-testdependencies-or-in-general-a-situation-with-many-configurations
1 parent 40cff29 commit 350ccc3

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ This data type is just a wrapper around `Number`, where
66
entering into the type can only be done with `Math.fround()`.
77

88
It supports all of the features of `Number`.
9+
10+
## Development
11+
12+
To test the package, `spago -x test.dhall test`.

packages.dhall

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ let additions =
119119

120120

121121
let upstream =
122-
https://github.com/purescript/package-sets/releases/download/psc-0.13.6-20200507/packages.dhall sha256:9c1e8951e721b79de1de551f31ecb5a339e82bbd43300eb5ccfb1bf8cf7bbd62
122+
https://github.com/purescript/package-sets/releases/download/psc-0.14.1-20210419/packages.dhall sha256:d9a082ffb5c0fabf689574f0680e901ca6f924e01acdbece5eeedd951731375a
123123

124124
let overrides = {=}
125125

spago.dhall

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
{-
2-
Welcome to a Spago project!
3-
You can edit this file as you like.
4-
-}
51
{ name = "float32"
2+
, license = "BSD-3-Clause"
63
, dependencies =
7-
[ "console", "effect", "generics-rep", "prelude", "psci-support", "quickcheck-laws" ]
4+
[ "effect"
5+
, "gen"
6+
, "maybe"
7+
, "prelude"
8+
, "psci-support"
9+
]
810
, packages = ./packages.dhall
9-
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
11+
, sources = [ "src/**/*.purs" ]
12+
, repository = "https://github.com/jamesdbrock/purescript-float32.git"
1013
}

test.dhall

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
let conf = ./spago.dhall
2+
3+
in conf // {
4+
, dependencies = conf.dependencies #
5+
[ "quickcheck"
6+
, "quickcheck-laws"
7+
]
8+
, sources = conf.sources # [ "test/**/*.purs" ]
9+
}
10+

0 commit comments

Comments
 (0)