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 09ec167 commit b46fa0e
Show file tree
Hide file tree
Showing 4 changed files with 22 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 @@ -5,14 +5,5 @@
"repository": {
"type": "git",
"url": "https://github.com/purescript-contrib/purescript-formatters.git"
},
"ignore": [
"**/.*",
"bower_components",
"node_modules",
"output",
"test",
"bower.json",
"package.json"
]
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"scripts": {
"build": "eslint src && spago build --censor-stats --strict --pedantic-packages",
"build": "eslint src && spago build --censor-stats --strict --ensure-ranges --pedantic-packages",
"test": "spago test --offline"
},
"devDependencies": {
Expand Down
38 changes: 19 additions & 19 deletions spago.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ package:
githubOwner: purescript-contrib
githubRepo: purescript-formatters
dependencies:
- arrays
- bifunctors
- control
- datetime
- either
- enums
- foldable-traversable
- integers
- lists
- maybe
- newtype
- numbers
- ordered-collections
- parsing
- partial
- prelude
- strings
- transformers
- tuples
- arrays: ">=7.3.0 <8.0.0"
- bifunctors: ">=6.0.0 <7.0.0"
- control: ">=6.0.0 <7.0.0"
- datetime: ">=6.1.0 <7.0.0"
- either: ">=6.1.0 <7.0.0"
- enums: ">=6.0.1 <7.0.0"
- foldable-traversable: ">=6.0.0 <7.0.0"
- integers: ">=6.0.0 <7.0.0"
- lists: ">=7.0.0 <8.0.0"
- maybe: ">=6.0.0 <7.0.0"
- newtype: ">=5.0.0 <6.0.0"
- numbers: ">=9.0.1 <10.0.0"
- ordered-collections: ">=3.2.0 <4.0.0"
- parsing: ">=10.2.0 <11.0.0"
- partial: ">=4.0.0 <5.0.0"
- prelude: ">=6.0.1 <7.0.0"
- strings: ">=6.0.1 <7.0.0"
- transformers: ">=6.1.0 <7.0.0"
- tuples: ">=7.0.0 <8.0.0"
test:
main: Test.Main
dependencies:
Expand Down

0 comments on commit b46fa0e

Please sign in to comment.