Skip to content

Commit

Permalink
feat: boxes, envparse, graphqlclient (purescript#1065)
Browse files Browse the repository at this point in the history
  • Loading branch information
srghma authored Feb 2, 2022
1 parent 333e88a commit b00e6de
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 2 deletions.
47 changes: 46 additions & 1 deletion packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,22 @@
"repo": "https://github.com/klntsky/purescript-bower-json.git",
"version": "v3.0.0"
},
"boxes": {
"dependencies": [
"arrays",
"foldable-traversable",
"maybe",
"newtype",
"prelude",
"profunctor",
"psci-support",
"strings",
"stringutils",
"tuples"
],
"repo": "https://github.com/cdepillabout/purescript-boxes.git",
"version": "v2.1.0"
},
"bucketchain": {
"dependencies": [
"aff",
Expand Down Expand Up @@ -1242,6 +1258,35 @@
"repo": "https://github.com/purescript/purescript-enums.git",
"version": "v5.0.0"
},
"envparse": {
"dependencies": [
"ansi",
"arrays",
"bifunctors",
"boxes",
"console",
"control",
"effect",
"either",
"exceptions",
"exists",
"foldable-traversable",
"foreign-object",
"integers",
"lists",
"maybe",
"newtype",
"node-process",
"ordered-collections",
"prelude",
"psci-support",
"strings",
"transformers",
"tuples"
],
"repo": "https://github.com/srghma/purescript-envparse.git",
"version": "v1.0.1"
},
"errors": {
"dependencies": [
"control",
Expand Down Expand Up @@ -1805,7 +1850,7 @@
"tuples"
],
"repo": "https://github.com/purescript-graphqlclient/purescript-graphqlclient.git",
"version": "v1.2.0"
"version": "v1.2.1"
},
"graphs": {
"dependencies": [
Expand Down
16 changes: 16 additions & 0 deletions src/groups/cdepillabout.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,20 @@
, repo = "https://github.com/cdepillabout/purescript-email-validate.git"
, version = "v6.0.0"
}
, boxes =
{ dependencies =
[ "prelude"
, "psci-support"
, "stringutils"
, "arrays"
, "foldable-traversable"
, "maybe"
, "newtype"
, "profunctor"
, "strings"
, "tuples"
]
, repo = "https://github.com/cdepillabout/purescript-boxes.git"
, version = "v2.1.0"
}
}
2 changes: 1 addition & 1 deletion src/groups/purescript-graphqlclient.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@
]
, repo =
"https://github.com/purescript-graphqlclient/purescript-graphqlclient.git"
, version = "v1.2.0"
, version = "v1.2.1"
}
}
29 changes: 29 additions & 0 deletions src/groups/srghma.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,33 @@
, repo = "https://github.com/srghma/purescript-record-extra-srghma.git"
, version = "v0.1.0"
}
, envparse =
{ dependencies =
[ "console"
, "effect"
, "psci-support"
, "either"
, "lists"
, "ordered-collections"
, "strings"
, "node-process"
, "transformers"
, "exists"
, "boxes"
, "ansi"
, "arrays"
, "bifunctors"
, "control"
, "exceptions"
, "foldable-traversable"
, "foreign-object"
, "integers"
, "maybe"
, "newtype"
, "prelude"
, "tuples"
]
, repo = "https://github.com/srghma/purescript-envparse.git"
, version = "v1.0.1"
}
}

0 comments on commit b00e6de

Please sign in to comment.