File tree 4 files changed +63
-39
lines changed
4 files changed +63
-39
lines changed Original file line number Diff line number Diff line change 28
28
output
29
29
30
30
- name : Build source
31
- run : spago build --censor-stats --strict --pedantic-packages
31
+ run : spago build --censor-stats --strict --ensure-ranges -- pedantic-packages
32
32
33
33
- name : Run tests
34
34
run : spago test --offline --censor-stats --strict --pedantic-packages -- --censor-codes=UserDefinedWarning
Original file line number Diff line number Diff line change 12
12
"repository" : {
13
13
"type" : " git" ,
14
14
"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
+ }
23
16
}
Original file line number Diff line number Diff line change 5
5
"path": "./",
6
6
"core": {
7
7
"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
+ }
23
53
],
24
54
"build_plan": [
25
55
"arrays",
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : css
3
+ description : PureScript CSS preprocessor
3
4
publish :
4
5
license : Apache-2.0
5
6
version : 6.0.0
6
7
location :
7
8
githubOwner : purescript-contrib
8
9
githubRepo : purescript-css
9
10
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 "
25
26
test :
26
27
main : Test.Main
27
28
dependencies :
You can’t perform that action at this time.
0 commit comments