Skip to content

Commit

Permalink
feat: migrate to spago@next
Browse files Browse the repository at this point in the history
  • Loading branch information
srghma committed Oct 11, 2024
1 parent 2159931 commit d1e2137
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
output
- name: Build source
run: spago build --censor-stats --strict --pedantic-packages
run: spago build --censor-stats --strict --ensure-ranges --pedantic-packages

- name: Run tests
run: spago test --offline --censor-stats --strict --pedantic-packages -- --censor-codes=UserDefinedWarning
Expand Down
11 changes: 1 addition & 10 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,5 @@
"repository": {
"type": "git",
"url": "https://github.com/purescript-contrib/purescript-quickcheck-laws.git"
},
"ignore": [
"**/.*",
"bower_components",
"node_modules",
"output",
"bower.json",
"gulpfile.js",
"package.json"
]
}
}
40 changes: 30 additions & 10 deletions spago.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,36 @@
"path": "./",
"core": {
"dependencies": [
"arrays",
"console",
"control",
"effect",
"enums",
"foldable-traversable",
"maybe",
"newtype",
"prelude",
"quickcheck"
{
"arrays": ">=7.3.0 <8.0.0"
},
{
"console": ">=6.1.0 <7.0.0"
},
{
"control": ">=6.0.0 <7.0.0"
},
{
"effect": ">=4.0.0 <5.0.0"
},
{
"enums": ">=6.0.1 <7.0.0"
},
{
"foldable-traversable": ">=6.0.0 <7.0.0"
},
{
"maybe": ">=6.0.0 <7.0.0"
},
{
"newtype": ">=5.0.0 <6.0.0"
},
{
"prelude": ">=6.0.1 <7.0.0"
},
{
"quickcheck": ">=8.0.1 <9.0.0"
}
],
"build_plan": [
"arrays",
Expand Down
21 changes: 11 additions & 10 deletions spago.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
package:
name: quickcheck-laws
description: Law tests for core classes
publish:
license: MIT
version: 7.0.0
location:
githubOwner: purescript-contrib
githubRepo: purescript-quickcheck-laws
dependencies:
- arrays
- console
- control
- effect
- enums
- foldable-traversable
- maybe
- newtype
- prelude
- quickcheck
- arrays: ">=7.3.0 <8.0.0"
- console: ">=6.1.0 <7.0.0"
- control: ">=6.0.0 <7.0.0"
- effect: ">=4.0.0 <5.0.0"
- enums: ">=6.0.1 <7.0.0"
- foldable-traversable: ">=6.0.0 <7.0.0"
- maybe: ">=6.0.0 <7.0.0"
- newtype: ">=5.0.0 <6.0.0"
- prelude: ">=6.0.1 <7.0.0"
- quickcheck: ">=8.0.1 <9.0.0"
test:
main: Test.Main
dependencies:
Expand Down

0 comments on commit d1e2137

Please sign in to comment.