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 a04badd commit 30f6e5b
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 39 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
9 changes: 1 addition & 8 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,5 @@
"repository": {
"type": "git",
"url": "https://github.com/purescript-contrib/purescript-css.git"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
}
60 changes: 45 additions & 15 deletions spago.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,51 @@
"path": "./",
"core": {
"dependencies": [
"arrays",
"colors",
"console",
"effect",
"either",
"exists",
"foldable-traversable",
"maybe",
"nonempty",
"prelude",
"profunctor",
"strings",
"these",
"transformers",
"tuples"
{
"arrays": ">=7.3.0 <8.0.0"
},
{
"colors": ">=7.0.1 <8.0.0"
},
{
"console": ">=6.1.0 <7.0.0"
},
{
"effect": ">=4.0.0 <5.0.0"
},
{
"either": ">=6.1.0 <7.0.0"
},
{
"exists": ">=6.0.0 <7.0.0"
},
{
"foldable-traversable": ">=6.0.0 <7.0.0"
},
{
"maybe": ">=6.0.0 <7.0.0"
},
{
"nonempty": ">=7.0.0 <8.0.0"
},
{
"prelude": ">=6.0.1 <7.0.0"
},
{
"profunctor": ">=6.0.1 <7.0.0"
},
{
"strings": ">=6.0.1 <7.0.0"
},
{
"these": ">=6.0.0 <7.0.0"
},
{
"transformers": ">=6.1.0 <7.0.0"
},
{
"tuples": ">=7.0.0 <8.0.0"
}
],
"build_plan": [
"arrays",
Expand Down
31 changes: 16 additions & 15 deletions spago.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
package:
name: css
description: PureScript CSS preprocessor
publish:
license: Apache-2.0
version: 6.0.0
location:
githubOwner: purescript-contrib
githubRepo: purescript-css
dependencies:
- arrays
- colors
- console
- effect
- either
- exists
- foldable-traversable
- maybe
- nonempty
- prelude
- profunctor
- strings
- these
- transformers
- tuples
- arrays: ">=7.3.0 <8.0.0"
- colors: ">=7.0.1 <8.0.0"
- console: ">=6.1.0 <7.0.0"
- effect: ">=4.0.0 <5.0.0"
- either: ">=6.1.0 <7.0.0"
- exists: ">=6.0.0 <7.0.0"
- foldable-traversable: ">=6.0.0 <7.0.0"
- maybe: ">=6.0.0 <7.0.0"
- nonempty: ">=7.0.0 <8.0.0"
- prelude: ">=6.0.1 <7.0.0"
- profunctor: ">=6.0.1 <7.0.0"
- strings: ">=6.0.1 <7.0.0"
- these: ">=6.0.0 <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 30f6e5b

Please sign in to comment.