Skip to content

Commit 582ddcb

Browse files
committed
add spago.yaml
1 parent 0529c4f commit 582ddcb

File tree

7 files changed

+172
-247
lines changed

7 files changed

+172
-247
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
/bower_components/
21
/node_modules/
3-
/.pulp-cache/
42
/output/
53
/generated-docs/
6-
/.psc*
7-
/.purs*
84
/.psa*
95
/contracts/
106
package-lock.json
117
/.spago/
128
.vscode
9+
spago.lock
10+
.spec-results

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"scripts": {
44
"build": "spago build",
5-
"test": "rm -rf contracts; spago -x test.dhall test; spago -x test.dhall build",
5+
"test": "rm -rf contracts/src; spago test; cd contracts; spago build",
66
"tidy": "purs-tidy format-in-place \"src/**/*.purs\" \"test/**/*.purs\" \"example/**/*.purs\"",
77
"tidy-check": "purs-tidy check \"src/**/*.purs\" \"test/**/*.purs\" \"example/**/*.purs\""
88
},
@@ -16,6 +16,6 @@
1616
"purescript": "^0.15.8",
1717
"purescript-psa": "^0.8.2",
1818
"purs-tidy": "^0.10.0",
19-
"spago": "^0.20.9"
19+
"spago": "next"
2020
}
2121
}

packages.dhall

Lines changed: 0 additions & 158 deletions
This file was deleted.

spago.dhall

Lines changed: 0 additions & 43 deletions
This file was deleted.

spago.yaml

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
package:
2+
name: web3-generator
3+
dependencies:
4+
- aff: ">=7.1.0 <8.0.0"
5+
- ansi: ">=7.0.0 <8.0.0"
6+
- argonaut: ">=9.0.0 <10.0.0"
7+
- argonaut-codecs: ">=9.1.0 <10.0.0"
8+
- argonaut-core: ">=7.0.0 <8.0.0"
9+
- argonaut-traversals: ">=10.0.0 <11.0.0"
10+
- arrays: ">=7.3.0 <8.0.0"
11+
- bifunctors: ">=6.0.0 <7.0.0"
12+
- console: ">=6.1.0 <7.0.0"
13+
- control: ">=6.0.0 <7.0.0"
14+
- effect: ">=4.0.0 <5.0.0"
15+
- either: ">=6.1.0 <7.0.0"
16+
- eth-core: "*"
17+
- exceptions: ">=6.1.0 <7.0.0"
18+
- fixed-points: ">=7.0.0 <8.0.0"
19+
- foldable-traversable: ">=6.0.0 <7.0.0"
20+
- identity: ">=6.0.0 <7.0.0"
21+
- integers: ">=6.0.0 <7.0.0"
22+
- language-cst-parser: ">=0.14.1 <0.15.0"
23+
- lists: ">=7.0.0 <8.0.0"
24+
- maybe: ">=6.0.0 <7.0.0"
25+
- newtype: ">=5.0.0 <6.0.0"
26+
- node-buffer: ">=9.0.0 <10.0.0"
27+
- node-fs: ">=9.2.0 <10.0.0"
28+
- node-path: ">=5.0.0 <6.0.0"
29+
- node-process: ">=11.2.0 <12.0.0"
30+
- optparse: ">=5.0.1 <6.0.0"
31+
- ordered-collections: ">=3.2.0 <4.0.0"
32+
- partial: ">=4.0.0 <5.0.0"
33+
- prelude: ">=6.0.1 <7.0.0"
34+
- profunctor-lenses: ">=8.0.0 <9.0.0"
35+
- string-parsers: ">=8.0.0 <9.0.0"
36+
- strings: ">=6.0.1 <7.0.0"
37+
- tidy-codegen: "*"
38+
- transformers: ">=6.1.0 <7.0.0"
39+
- tuples: ">=7.0.0 <8.0.0"
40+
- web3: "*"
41+
test:
42+
main: Test.Main
43+
dependencies:
44+
- spec
45+
- spec-node
46+
workspace:
47+
extraPackages:
48+
coroutine-transducers:
49+
dependencies:
50+
- aff
51+
- console
52+
- coroutines
53+
- effect
54+
- either
55+
- foldable-traversable
56+
- freet
57+
- functors
58+
- maybe
59+
- newtype
60+
- parallel
61+
- prelude
62+
- psci-support
63+
- tailrec
64+
- transformers
65+
- tuples
66+
git: https://github.com/martyall/purescript-coroutine-transducers
67+
ref: v1.0.0
68+
dodo-printer:
69+
dependencies:
70+
- aff
71+
- ansi
72+
- arrays
73+
- avar
74+
- console
75+
- control
76+
- effect
77+
- either
78+
- exceptions
79+
- foldable-traversable
80+
- integers
81+
- lists
82+
- maybe
83+
- minibench
84+
- newtype
85+
- node-buffer
86+
- node-child-process
87+
- node-path
88+
- node-process
89+
- node-streams
90+
- parallel
91+
- partial
92+
- posix-types
93+
- prelude
94+
- safe-coerce
95+
- strings
96+
- tuples
97+
git: https://github.com/natefaubion/purescript-dodo-printer.git
98+
ref: v2.2.1
99+
eth-core:
100+
git: https://github.com/f-o-a-m/purescript-eth-core
101+
ref: 3db27d22f738498a1e4263f537cd25279fc88088
102+
tidy:
103+
dependencies:
104+
- arrays
105+
- dodo-printer
106+
- foldable-traversable
107+
- language-cst-parser
108+
- lists
109+
- maybe
110+
- ordered-collections
111+
- partial
112+
- prelude
113+
- strings
114+
- tuples
115+
git: https://github.com/natefaubion/purescript-tidy.git
116+
ref: v0.10.0
117+
tidy-codegen:
118+
dependencies:
119+
- aff
120+
- ansi
121+
- arrays
122+
- avar
123+
- bifunctors
124+
- console
125+
- control
126+
- dodo-printer
127+
- effect
128+
- either
129+
- enums
130+
- exceptions
131+
- filterable
132+
- foldable-traversable
133+
- free
134+
- identity
135+
- integers
136+
- language-cst-parser
137+
- lazy
138+
- lists
139+
- maybe
140+
- newtype
141+
- node-buffer
142+
- node-child-process
143+
- node-path
144+
- node-process
145+
- node-streams
146+
- ordered-collections
147+
- parallel
148+
- partial
149+
- posix-types
150+
- prelude
151+
- record
152+
- safe-coerce
153+
- st
154+
- strings
155+
- tidy
156+
- transformers
157+
- tuples
158+
- type-equality
159+
- unicode
160+
git: https://github.com/natefaubion/purescript-tidy-codegen.git
161+
ref: v4.0.0
162+
web3:
163+
git: https://github.com/f-o-a-m/purescript-web3.git
164+
ref: bd87cd18adb863cfccdfe5ff263a129c02f1c8c2

0 commit comments

Comments
 (0)