Skip to content

Commit

Permalink
Add jwt (purescript#433)
Browse files Browse the repository at this point in the history
* Add `jwt`

* Sort `stringutils` dependencies
  • Loading branch information
menelaos authored and justinwoo committed Aug 14, 2019
1 parent 7e8c896 commit 730d854
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
15 changes: 15 additions & 0 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -1361,6 +1361,21 @@
"repo": "https://github.com/felixmulder/purescript-json-schema.git",
"version": "v0.0.1"
},
"jwt": {
"dependencies": [
"argonaut-core",
"arrays",
"b64",
"either",
"errors",
"exceptions",
"prelude",
"profunctor-lenses",
"strings"
],
"repo": "https://github.com/menelaos/purescript-jwt.git",
"version": "v0.0.6"
},
"kancho": {
"dependencies": [
"foreign",
Expand Down
25 changes: 21 additions & 4 deletions src/groups/menelaos.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,32 @@
, version =
"v0.0.5"
}
, stringutils =
, jwt =
{ dependencies =
[ "strings"
, "partial"
[ "argonaut-core"
, "arrays"
, "b64"
, "either"
, "maybe"
, "errors"
, "exceptions"
, "prelude"
, "profunctor-lenses"
, "strings"
]
, repo =
"https://github.com/menelaos/purescript-jwt.git"
, version =
"v0.0.6"
}
, stringutils =
{ dependencies =
[ "arrays"
, "either"
, "integers"
, "maybe"
, "partial"
, "prelude"
, "strings"
]
, repo =
"https://github.com/menelaos/purescript-stringutils.git"
Expand Down

0 comments on commit 730d854

Please sign in to comment.