Skip to content

Commit 30f6e5b

Browse files
committed
feat: migrate to spago@next
1 parent a04badd commit 30f6e5b

File tree

4 files changed

+63
-39
lines changed

4 files changed

+63
-39
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 & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,5 @@
1212
"repository": {
1313
"type": "git",
1414
"url": "https://github.com/purescript-contrib/purescript-css.git"
15-
},
16-
"ignore": [
17-
"**/.*",
18-
"node_modules",
19-
"bower_components",
20-
"test",
21-
"tests"
22-
]
15+
}
2316
}

spago.lock

Lines changed: 45 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,51 @@
55
"path": "./",
66
"core": {
77
"dependencies": [
8-
"arrays",
9-
"colors",
10-
"console",
11-
"effect",
12-
"either",
13-
"exists",
14-
"foldable-traversable",
15-
"maybe",
16-
"nonempty",
17-
"prelude",
18-
"profunctor",
19-
"strings",
20-
"these",
21-
"transformers",
22-
"tuples"
8+
{
9+
"arrays": ">=7.3.0 <8.0.0"
10+
},
11+
{
12+
"colors": ">=7.0.1 <8.0.0"
13+
},
14+
{
15+
"console": ">=6.1.0 <7.0.0"
16+
},
17+
{
18+
"effect": ">=4.0.0 <5.0.0"
19+
},
20+
{
21+
"either": ">=6.1.0 <7.0.0"
22+
},
23+
{
24+
"exists": ">=6.0.0 <7.0.0"
25+
},
26+
{
27+
"foldable-traversable": ">=6.0.0 <7.0.0"
28+
},
29+
{
30+
"maybe": ">=6.0.0 <7.0.0"
31+
},
32+
{
33+
"nonempty": ">=7.0.0 <8.0.0"
34+
},
35+
{
36+
"prelude": ">=6.0.1 <7.0.0"
37+
},
38+
{
39+
"profunctor": ">=6.0.1 <7.0.0"
40+
},
41+
{
42+
"strings": ">=6.0.1 <7.0.0"
43+
},
44+
{
45+
"these": ">=6.0.0 <7.0.0"
46+
},
47+
{
48+
"transformers": ">=6.1.0 <7.0.0"
49+
},
50+
{
51+
"tuples": ">=7.0.0 <8.0.0"
52+
}
2353
],
2454
"build_plan": [
2555
"arrays",

spago.yaml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
package:
22
name: css
3+
description: PureScript CSS preprocessor
34
publish:
45
license: Apache-2.0
56
version: 6.0.0
67
location:
78
githubOwner: purescript-contrib
89
githubRepo: purescript-css
910
dependencies:
10-
- arrays
11-
- colors
12-
- console
13-
- effect
14-
- either
15-
- exists
16-
- foldable-traversable
17-
- maybe
18-
- nonempty
19-
- prelude
20-
- profunctor
21-
- strings
22-
- these
23-
- transformers
24-
- tuples
11+
- arrays: ">=7.3.0 <8.0.0"
12+
- colors: ">=7.0.1 <8.0.0"
13+
- console: ">=6.1.0 <7.0.0"
14+
- effect: ">=4.0.0 <5.0.0"
15+
- either: ">=6.1.0 <7.0.0"
16+
- exists: ">=6.0.0 <7.0.0"
17+
- foldable-traversable: ">=6.0.0 <7.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+
- profunctor: ">=6.0.1 <7.0.0"
22+
- strings: ">=6.0.1 <7.0.0"
23+
- these: ">=6.0.0 <7.0.0"
24+
- transformers: ">=6.1.0 <7.0.0"
25+
- tuples: ">=7.0.0 <8.0.0"
2526
test:
2627
main: Test.Main
2728
dependencies:

0 commit comments

Comments
 (0)