Skip to content

Commit e9b3d53

Browse files
committed
feat: migrate to spago@next
1 parent ac9cde5 commit e9b3d53

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
output
2929
3030
- name: Build source
31-
run: spago build --censor-stats --strict --pedantic-packages
31+
run: spago build --censor-stats --strict --ensure-ranges --pedantic-packages
3232

3333
- name: Run tests
3434
run: spago test --offline --censor-stats --strict --pedantic-packages -- --censor-codes=UserDefinedWarning

bower.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,5 @@
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/purescript-contrib/purescript-float32.git"
7-
},
8-
"ignore": [
9-
"**/.*",
10-
"node_modules",
11-
"bower_components",
12-
"output"
13-
]
7+
}
148
}

spago.lock

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@
55
"path": "./",
66
"core": {
77
"dependencies": [
8-
"gen",
9-
"maybe",
10-
"prelude"
8+
{
9+
"gen": ">=4.0.0 <5.0.0"
10+
},
11+
{
12+
"maybe": ">=6.0.0 <7.0.0"
13+
},
14+
{
15+
"prelude": ">=6.0.1 <7.0.0"
16+
}
1117
],
1218
"build_plan": [
1319
"bifunctors",
@@ -41,7 +47,6 @@
4147
},
4248
"test": {
4349
"dependencies": [
44-
"console",
4550
"effect",
4651
"quickcheck",
4752
"quickcheck-laws"

spago.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@ package:
77
githubOwner: purescript-contrib
88
githubRepo: purescript-float32
99
dependencies:
10-
- gen
11-
- maybe
12-
- prelude
10+
- gen: ">=4.0.0 <5.0.0"
11+
- maybe: ">=6.0.0 <7.0.0"
12+
- prelude: ">=6.0.1 <7.0.0"
1313
test:
1414
main: Test.Main
1515
dependencies:
16-
- console
1716
- effect
1817
- quickcheck
1918
- quickcheck-laws

0 commit comments

Comments
 (0)