Skip to content

Commit 1544573

Browse files
authored
upgrade to spago next (#176)
1 parent 2dd330d commit 1544573

6 files changed

+99
-135
lines changed

.gitignore

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
/bower_components/
21
node_modules/
3-
/.pulp-cache/
42
/output/
53
/generated-docs/
6-
/.psc*
7-
/.purs*
84
/.psa*
9-
*.swp
10-
*#*
115
package-lock.json
126
/.vscode
13-
yarn.lock
14-
/test/chanterelle/.spago
157
/.spago/
8+
spago.lock

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"build": "spago build",
55
"tidy": "purs-tidy format-in-place \"src/**/*.purs\" \"test/**/*.purs\"",
66
"tidy-check": "purs-tidy check \"src/**/*.purs\" \"test/**/*.purs\"",
7-
"test": "spago -x test.dhall test"
7+
"test": "spago test"
88
},
99
"dependencies": {
1010
"ethjs-provider-http": "^0.1.6",
@@ -16,6 +16,6 @@
1616
"purescript": "^0.15.8",
1717
"purescript-psa": "^0.8.2",
1818
"purs-tidy": "^0.10.0",
19-
"spago": "^0.21.0"
19+
"spago": "next"
2020
}
2121
}

packages.dhall

-62
This file was deleted.

spago.dhall

-44
This file was deleted.

spago.yaml

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
package:
2+
name: web3
3+
dependencies:
4+
- aff: ">=7.1.0 <8.0.0"
5+
- argonaut: ">=9.0.0 <10.0.0"
6+
- arrays: ">=7.3.0 <8.0.0"
7+
- bifunctors: ">=6.0.0 <7.0.0"
8+
- control: ">=6.0.0 <7.0.0"
9+
- coroutine-transducers: "*"
10+
- coroutines: ">=7.0.0 <8.0.0"
11+
- effect: ">=4.0.0 <5.0.0"
12+
- either: ">=6.1.0 <7.0.0"
13+
- eth-core: "*"
14+
- exceptions: ">=6.1.0 <7.0.0"
15+
- foldable-traversable: ">=6.0.0 <7.0.0"
16+
- foreign: ">=7.0.0 <8.0.0"
17+
- foreign-object: ">=4.1.0 <5.0.0"
18+
- fork: ">=6.0.0 <7.0.0"
19+
- gen: ">=4.0.0 <5.0.0"
20+
- heterogeneous: ">=0.6.0 <0.7.0"
21+
- identity: ">=6.0.0 <7.0.0"
22+
- maybe: ">=6.0.0 <7.0.0"
23+
- newtype: ">=5.0.0 <6.0.0"
24+
- node-buffer: ">=9.0.0 <10.0.0"
25+
- parallel: ">=6.0.0 <7.0.0"
26+
- parsing: ">=10.2.0 <11.0.0"
27+
- partial: ">=4.0.0 <5.0.0"
28+
- prelude: ">=6.0.1 <7.0.0"
29+
- profunctor-lenses: ">=8.0.0 <9.0.0"
30+
- record: ">=4.0.0 <5.0.0"
31+
- ring-modules: ">=5.0.1 <6.0.0"
32+
- simple-json: ">=9.0.0 <10.0.0"
33+
- strings: ">=6.0.1 <7.0.0"
34+
- tagged: ">=4.0.2 <5.0.0"
35+
- tailrec: ">=6.1.0 <7.0.0"
36+
- transformers: ">=6.1.0 <7.0.0"
37+
- tuples: ">=7.0.0 <8.0.0"
38+
- typelevel-prelude: ">=7.0.0 <8.0.0"
39+
- unfoldable: ">=6.0.0 <7.0.0"
40+
- unsafe-coerce: ">=6.0.0 <7.0.0"
41+
- variant: ">=8.0.0 <9.0.0"
42+
test:
43+
main: Test.Main
44+
dependencies:
45+
- quickcheck
46+
- quickcheck-laws
47+
- spec
48+
- spec-node
49+
workspace:
50+
extraPackages:
51+
coroutine-transducers:
52+
dependencies:
53+
- aff
54+
- console
55+
- coroutines
56+
- effect
57+
- either
58+
- foldable-traversable
59+
- freet
60+
- functors
61+
- maybe
62+
- newtype
63+
- parallel
64+
- prelude
65+
- psci-support
66+
- tailrec
67+
- transformers
68+
- tuples
69+
git: https://github.com/martyall/purescript-coroutine-transducers
70+
ref: v1.0.0
71+
eth-core:
72+
dependencies:
73+
- argonaut
74+
- arrays
75+
- effect
76+
- either
77+
- foldable-traversable
78+
- foreign
79+
- functions
80+
- gen
81+
- integers
82+
- js-bigints
83+
- lists
84+
- maybe
85+
- newtype
86+
- node-buffer
87+
- nonempty
88+
- ordered-collections
89+
- partial
90+
- prelude
91+
- simple-json
92+
- strings
93+
- unfoldable
94+
- unsafe-coerce
95+
git: https://github.com/f-o-a-m/purescript-eth-core
96+
ref: 3db27d22f738498a1e4263f537cd25279fc88088

test.dhall

-19
This file was deleted.

0 commit comments

Comments
 (0)