Skip to content

Commit 2d5be91

Browse files
author
Serhii Khoma
committed
feat: migrate to spago@next
1 parent f8787e7 commit 2d5be91

File tree

4 files changed

+16
-23
lines changed

4 files changed

+16
-23
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 & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,5 @@
1616
"repository": {
1717
"type": "git",
1818
"url": "https://github.com/purescript-contrib/purescript-argonaut-core.git"
19-
},
20-
"ignore": [
21-
"**/.*",
22-
"bower_components",
23-
"node_modules",
24-
"output",
25-
"test",
26-
"bower.json",
27-
"package.json"
28-
]
19+
}
2920
}

package.json

Lines changed: 1 addition & 1 deletion
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": {

spago.yaml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
package:
22
name: argonaut-core
3+
description: Core of the purescript-argonaut library, providing basic types,
4+
folds, and combinators for `Json`
35
publish:
46
license: MIT
57
version: 7.0.0
68
location:
79
githubOwner: purescript-contrib
810
githubRepo: purescript-argonaut-core
911
dependencies:
10-
- arrays
11-
- control
12-
- either
13-
- foreign-object
14-
- functions
15-
- gen
16-
- maybe
17-
- nonempty
18-
- prelude
19-
- strings
20-
- tailrec
12+
- arrays: ">=7.3.0 <8.0.0"
13+
- control: ">=6.0.0 <7.0.0"
14+
- either: ">=6.1.0 <7.0.0"
15+
- foreign-object: ">=4.1.0 <5.0.0"
16+
- functions: ">=6.0.0 <7.0.0"
17+
- gen: ">=4.0.0 <5.0.0"
18+
- maybe: ">=6.0.0 <7.0.0"
19+
- nonempty: ">=7.0.0 <8.0.0"
20+
- prelude: ">=6.0.1 <7.0.0"
21+
- strings: ">=6.0.1 <7.0.0"
22+
- tailrec: ">=6.1.0 <7.0.0"
2123
test:
2224
main: Test.Main
2325
dependencies:

0 commit comments

Comments
 (0)