Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to spago next #176

Merged
merged 1 commit into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
/bower_components/
node_modules/
/.pulp-cache/
/output/
/generated-docs/
/.psc*
/.purs*
/.psa*
*.swp
*#*
package-lock.json
/.vscode
yarn.lock
/test/chanterelle/.spago
/.spago/
spago.lock
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"build": "spago build",
"tidy": "purs-tidy format-in-place \"src/**/*.purs\" \"test/**/*.purs\"",
"tidy-check": "purs-tidy check \"src/**/*.purs\" \"test/**/*.purs\"",
"test": "spago -x test.dhall test"
"test": "spago test"
},
"dependencies": {
"ethjs-provider-http": "^0.1.6",
Expand All @@ -16,6 +16,6 @@
"purescript": "^0.15.8",
"purescript-psa": "^0.8.2",
"purs-tidy": "^0.10.0",
"spago": "^0.21.0"
"spago": "next"
}
}
62 changes: 0 additions & 62 deletions packages.dhall

This file was deleted.

44 changes: 0 additions & 44 deletions spago.dhall

This file was deleted.

96 changes: 96 additions & 0 deletions spago.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
package:
name: web3
dependencies:
- aff: ">=7.1.0 <8.0.0"
- argonaut: ">=9.0.0 <10.0.0"
- arrays: ">=7.3.0 <8.0.0"
- bifunctors: ">=6.0.0 <7.0.0"
- control: ">=6.0.0 <7.0.0"
- coroutine-transducers: "*"
- coroutines: ">=7.0.0 <8.0.0"
- effect: ">=4.0.0 <5.0.0"
- either: ">=6.1.0 <7.0.0"
- eth-core: "*"
- exceptions: ">=6.1.0 <7.0.0"
- foldable-traversable: ">=6.0.0 <7.0.0"
- foreign: ">=7.0.0 <8.0.0"
- foreign-object: ">=4.1.0 <5.0.0"
- fork: ">=6.0.0 <7.0.0"
- gen: ">=4.0.0 <5.0.0"
- heterogeneous: ">=0.6.0 <0.7.0"
- identity: ">=6.0.0 <7.0.0"
- maybe: ">=6.0.0 <7.0.0"
- newtype: ">=5.0.0 <6.0.0"
- node-buffer: ">=9.0.0 <10.0.0"
- parallel: ">=6.0.0 <7.0.0"
- parsing: ">=10.2.0 <11.0.0"
- partial: ">=4.0.0 <5.0.0"
- prelude: ">=6.0.1 <7.0.0"
- profunctor-lenses: ">=8.0.0 <9.0.0"
- record: ">=4.0.0 <5.0.0"
- ring-modules: ">=5.0.1 <6.0.0"
- simple-json: ">=9.0.0 <10.0.0"
- strings: ">=6.0.1 <7.0.0"
- tagged: ">=4.0.2 <5.0.0"
- tailrec: ">=6.1.0 <7.0.0"
- transformers: ">=6.1.0 <7.0.0"
- tuples: ">=7.0.0 <8.0.0"
- typelevel-prelude: ">=7.0.0 <8.0.0"
- unfoldable: ">=6.0.0 <7.0.0"
- unsafe-coerce: ">=6.0.0 <7.0.0"
- variant: ">=8.0.0 <9.0.0"
test:
main: Test.Main
dependencies:
- quickcheck
- quickcheck-laws
- spec
- spec-node
workspace:
extraPackages:
coroutine-transducers:
dependencies:
- aff
- console
- coroutines
- effect
- either
- foldable-traversable
- freet
- functors
- maybe
- newtype
- parallel
- prelude
- psci-support
- tailrec
- transformers
- tuples
git: https://github.com/martyall/purescript-coroutine-transducers
ref: v1.0.0
eth-core:
dependencies:
- argonaut
- arrays
- effect
- either
- foldable-traversable
- foreign
- functions
- gen
- integers
- js-bigints
- lists
- maybe
- newtype
- node-buffer
- nonempty
- ordered-collections
- partial
- prelude
- simple-json
- strings
- unfoldable
- unsafe-coerce
git: https://github.com/f-o-a-m/purescript-eth-core
ref: 3db27d22f738498a1e4263f537cd25279fc88088
19 changes: 0 additions & 19 deletions test.dhall

This file was deleted.

Loading