Skip to content

Commit 0a2e39e

Browse files
authored
Merge pull request #28 from jamesdbrock/master
Spago config for PureScript v0.14.1
2 parents d073ea8 + 2fd6297 commit 0a2e39e

File tree

4 files changed

+74
-11
lines changed

4 files changed

+74
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ node_modules/
77
yarn-error.log
88
yarn.lock
99
generated-docs/
10+
.spago/

bower.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,21 @@
1212
"output"
1313
],
1414
"dependencies": {
15-
"purescript-functions": "^4.0.0",
15+
"purescript-prelude": "^5.0.0",
16+
"purescript-functions": "^5.0.0",
1617
"purescript-arraybuffer-types": "^2.0.0",
17-
"purescript-maybe": "^4.0.1",
18-
"purescript-effect": "^2.0.1",
19-
"purescript-nullable": "^4.1.1",
18+
"purescript-maybe": "^5.0.0",
19+
"purescript-effect": "^3.0.0",
20+
"purescript-nullable": "^5.0.0",
2021
"purescript-typelevel": "^6.0.0",
21-
"purescript-uint": "^5.1.1",
22-
"purescript-partial": "^2.0.1",
23-
"purescript-float32": "~0.1.1"
22+
"purescript-uint": "^5.1.4",
23+
"purescript-partial": "^3.0.0",
24+
"purescript-float32": "~0.2.0"
2425
},
2526
"devDependencies": {
26-
"purescript-debug": "^4.0.0",
27-
"purescript-quickcheck": "^6.1.0",
28-
"purescript-quickcheck-combinators": "~0.1.2",
29-
"purescript-quickcheck-laws": "^5.0.1"
27+
"purescript-debug": "^5.0.0",
28+
"purescript-quickcheck": "^7.0.0",
29+
"purescript-quickcheck-combinators": "~0.1.3",
30+
"purescript-quickcheck-laws": "^6.0.0"
3031
}
3132
}

packages.dhall

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
let upstream =
3+
https://github.com/purescript/package-sets/releases/download/psc-0.14.1-20210419/packages.dhall sha256:d9a082ffb5c0fabf689574f0680e901ca6f924e01acdbece5eeedd951731375a
4+
5+
let overrides = {=}
6+
7+
let additions =
8+
{ float32 =
9+
{ dependencies =
10+
[ "effect"
11+
, "gen"
12+
, "maybe"
13+
, "prelude"
14+
]
15+
, repo =
16+
"https://github.com/athanclark/purescript-float32.git"
17+
, version =
18+
"v0.2.0"
19+
}
20+
, uint =
21+
{ dependencies =
22+
[ "effect"
23+
, "math"
24+
, "maybe"
25+
, "quickcheck"
26+
, "quickcheck-laws"
27+
]
28+
, repo = "https://github.com/zaquest/purescript-uint.git"
29+
, version = "v5.1.4"
30+
}
31+
}
32+
33+
in upstream // overrides // additions
34+

spago.dhall

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{ name = "arraybuffer"
2+
, dependencies =
3+
[ "arraybuffer-types"
4+
, "arrays"
5+
, "console"
6+
, "effect"
7+
, "float32"
8+
, "foldable-traversable"
9+
, "functions"
10+
, "gen"
11+
, "maybe"
12+
, "nullable"
13+
, "partial"
14+
, "prelude"
15+
, "quickcheck"
16+
, "quickcheck-combinators"
17+
, "quickcheck-laws"
18+
, "refs"
19+
, "tailrec"
20+
, "typelevel"
21+
, "typelevel-prelude"
22+
, "uint"
23+
, "unfoldable"
24+
]
25+
, packages = ./packages.dhall
26+
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
27+
}

0 commit comments

Comments
 (0)