Skip to content

Commit 1db7899

Browse files
committed
feat: migrate to spago@next
1 parent 02a57f6 commit 1db7899

File tree

4 files changed

+11
-17
lines changed

4 files changed

+11
-17
lines changed

Diff for: .github/workflows/ci.yml

+1-1
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

Diff for: bower.json

+1-8
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,5 @@
1414
"PureScript",
1515
"AVar"
1616
],
17-
"license": "Apache-2.0",
18-
"ignore": [
19-
"**/.*",
20-
"node_modules",
21-
"bower_components",
22-
"test",
23-
"tests"
24-
]
17+
"license": "Apache-2.0"
2518
}

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "eslint src && spago build --censor-stats --strict --pedantic-packages",
4+
"build": "eslint src && spago build --censor-stats --strict --ensure-ranges --pedantic-packages",
55
"test": "spago test --offline"
66
},
77
"devDependencies": {

Diff for: spago.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
package:
22
name: avar
3+
description: Low-level interface for asynchronous variables
34
publish:
45
license: Apache-2.0
56
version: 5.0.0
67
location:
78
githubOwner: purescript-contrib
89
githubRepo: purescript-avar
910
dependencies:
10-
- aff
11-
- effect
12-
- either
13-
- exceptions
14-
- functions
15-
- maybe
16-
- prelude
11+
- aff: ">=8.0.0 <9.0.0"
12+
- effect: ">=4.0.0 <5.0.0"
13+
- either: ">=6.1.0 <7.0.0"
14+
- exceptions: ">=6.1.0 <7.0.0"
15+
- functions: ">=6.0.0 <7.0.0"
16+
- maybe: ">=6.0.0 <7.0.0"
17+
- prelude: ">=6.0.1 <7.0.0"
1718
test:
1819
main: Test.Main
1920
dependencies:

0 commit comments

Comments
 (0)