Skip to content

Commit

Permalink
Update and add cowboy,jsone, add initial maps binding
Browse files Browse the repository at this point in the history
  • Loading branch information
nwolverson committed Jul 30, 2018
1 parent 6227bd0 commit c244a47
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
35 changes: 35 additions & 0 deletions packages.json
Expand Up @@ -163,6 +163,30 @@
"repo": "https://github.com/purerl/purescript-erl-binary.git",
"version": "v0.3.0"
},
"erl-cowboy": {
"dependencies": [
"erl-atom",
"erl-lists",
"erl-tuples",
"maybe",
"prelude",
"transformers"
],
"repo": "https://github.com/purerl/purescript-erl-cowboy",
"version": "v0.5.0"
},
"erl-jsone": {
"dependencies": [
"arrays",
"integers",
"assert",
"either",
"erl-lists",
"erl-tuples"
],
"repo": "https://github.com/purerl/purescript-erl-jsone",
"version": "v0.4.0"
},
"erl-lists": {
"dependencies": [
"prelude",
Expand All @@ -173,6 +197,17 @@
"repo": "https://github.com/purerl/purescript-erl-lists.git",
"version": "v3.0.0"
},
"erl-maps": {
"dependencies": [
"erl-lists",
"functions",
"prelude",
"tuples",
"unfoldable"
],
"repo": "https://github.com/purerl/purescript-erl-maps.git",
"version": "v0.1.0"
},
"erl-process": {
"dependencies": [
"prelude",
Expand Down
19 changes: 19 additions & 0 deletions src/groups/purerl-wrappers.dhall
@@ -0,0 +1,19 @@
let mkPackage = ./../mkPackage.dhall

in { erl-cowboy =
mkPackage
[ "erl-atom"
, "erl-lists"
, "erl-tuples"
, "maybe"
, "prelude"
, "transformers"
]
"https://github.com/purerl/purescript-erl-cowboy"
"v0.5.0"
, erl-jsone =
mkPackage
[ "arrays", "integers", "assert", "either", "erl-lists", "erl-tuples" ]
"https://github.com/purerl/purescript-erl-jsone"
"v0.4.0"
}
5 changes: 5 additions & 0 deletions src/groups/purerl.dhall
Expand Up @@ -25,4 +25,9 @@ in { erl-lists =
[ "prelude", "effect" ]
"https://github.com/purerl/purescript-erl-process.git"
"v2.0.0"
, erl-maps =
mkPackage
[ "erl-lists", "functions", "prelude", "tuples", "unfoldable" ]
"https://github.com/purerl/purescript-erl-maps.git"
"v0.1.0"
}
1 change: 1 addition & 0 deletions src/packages.dhall
@@ -1,4 +1,5 @@
./groups/purescript.dhall
./groups/purescript-forked.dhall
./groups/purerl.dhall
./groups/purerl-wrappers.dhall

0 comments on commit c244a47

Please sign in to comment.