Skip to content

Commit a15b896

Browse files
Add publish section to spago.yaml
1 parent 19cba77 commit a15b896

File tree

3 files changed

+103
-49
lines changed

3 files changed

+103
-49
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018 John Watson
1+
Copyright (c) 2025 John Watson
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

spago.lock

Lines changed: 72 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,78 @@
55
"path": "./",
66
"core": {
77
"dependencies": [
8-
"arrays",
9-
"bifunctors",
10-
"control",
11-
"either",
12-
"enums",
13-
"foldable-traversable",
14-
"identity",
15-
"integers",
16-
"js-bigints",
17-
"lists",
18-
"maybe",
19-
"midi",
20-
"newtype",
21-
"ordered-collections",
22-
"partial",
23-
"prelude",
24-
"profunctor-lenses",
25-
"rationals",
26-
"string-parsers",
27-
"strings",
28-
"stringutils",
29-
"transformers",
30-
"tuples",
31-
"unfoldable"
8+
{
9+
"arrays": ">=7.3.0 <8.0.0"
10+
},
11+
{
12+
"bifunctors": ">=6.0.0 <7.0.0"
13+
},
14+
{
15+
"control": ">=6.0.0 <7.0.0"
16+
},
17+
{
18+
"either": ">=6.1.0 <7.0.0"
19+
},
20+
{
21+
"enums": ">=6.0.1 <7.0.0"
22+
},
23+
{
24+
"foldable-traversable": ">=6.0.0 <7.0.0"
25+
},
26+
{
27+
"identity": ">=6.0.0 <7.0.0"
28+
},
29+
{
30+
"integers": ">=6.0.0 <7.0.0"
31+
},
32+
{
33+
"js-bigints": ">=2.2.1 <3.0.0"
34+
},
35+
{
36+
"lists": ">=7.0.0 <8.0.0"
37+
},
38+
{
39+
"maybe": ">=6.0.0 <7.0.0"
40+
},
41+
{
42+
"midi": ">=4.0.0 <5.0.0"
43+
},
44+
{
45+
"newtype": ">=5.0.0 <6.0.0"
46+
},
47+
{
48+
"ordered-collections": ">=3.2.0 <4.0.0"
49+
},
50+
{
51+
"partial": ">=4.0.0 <5.0.0"
52+
},
53+
{
54+
"prelude": ">=6.0.1 <7.0.0"
55+
},
56+
{
57+
"profunctor-lenses": ">=8.0.0 <9.0.0"
58+
},
59+
{
60+
"rationals": ">=6.0.0 <7.0.0"
61+
},
62+
{
63+
"string-parsers": ">=8.0.0 <9.0.0"
64+
},
65+
{
66+
"strings": ">=6.0.1 <7.0.0"
67+
},
68+
{
69+
"stringutils": ">=0.0.12 <0.0.13"
70+
},
71+
{
72+
"transformers": ">=6.1.0 <7.0.0"
73+
},
74+
{
75+
"tuples": ">=7.0.0 <8.0.0"
76+
},
77+
{
78+
"unfoldable": ">=6.0.0 <7.0.0"
79+
}
3280
],
3381
"build_plan": [
3482
"aff",

spago.yaml

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,36 @@
11
package:
22
name: abc-parser
3+
publish:
4+
version: 2.1.0
5+
license: "MIT"
6+
location:
7+
githubOwner: newlandsvalley
8+
githubRepo: purescript-abc-parser
39
dependencies:
4-
- arrays
5-
- bifunctors
6-
- control
7-
- either
8-
- enums
9-
- foldable-traversable
10-
- identity
11-
- integers
12-
- js-bigints
13-
- lists
14-
- maybe
15-
- midi
16-
- newtype
17-
- ordered-collections
18-
- partial
19-
- prelude
20-
- profunctor-lenses
21-
- rationals
22-
- string-parsers
23-
- strings
24-
- stringutils
25-
- transformers
26-
- tuples
27-
- unfoldable
10+
- arrays: ">=7.3.0 <8.0.0"
11+
- bifunctors: ">=6.0.0 <7.0.0"
12+
- control: ">=6.0.0 <7.0.0"
13+
- either: ">=6.1.0 <7.0.0"
14+
- enums: ">=6.0.1 <7.0.0"
15+
- foldable-traversable: ">=6.0.0 <7.0.0"
16+
- identity: ">=6.0.0 <7.0.0"
17+
- integers: ">=6.0.0 <7.0.0"
18+
- js-bigints: ">=2.2.1 <3.0.0"
19+
- lists: ">=7.0.0 <8.0.0"
20+
- maybe: ">=6.0.0 <7.0.0"
21+
- midi: ">=4.0.0 <5.0.0"
22+
- newtype: ">=5.0.0 <6.0.0"
23+
- ordered-collections: ">=3.2.0 <4.0.0"
24+
- partial: ">=4.0.0 <5.0.0"
25+
- prelude: ">=6.0.1 <7.0.0"
26+
- profunctor-lenses: ">=8.0.0 <9.0.0"
27+
- rationals: ">=6.0.0 <7.0.0"
28+
- string-parsers: ">=8.0.0 <9.0.0"
29+
- strings: ">=6.0.1 <7.0.0"
30+
- stringutils: ">=0.0.12 <0.0.13"
31+
- transformers: ">=6.1.0 <7.0.0"
32+
- tuples: ">=7.0.0 <8.0.0"
33+
- unfoldable: ">=6.0.0 <7.0.0"
2834
test:
2935
main: Test.Main
3036
dependencies:

0 commit comments

Comments
 (0)