Skip to content

Commit

Permalink
update packages (#275)
Browse files Browse the repository at this point in the history
* update packages

* add missing cache dirs
  • Loading branch information
justinwoo authored Mar 1, 2019
1 parent 69d42f6 commit 858717a
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
language: nix
script: nix-shell --run 'make ci'
cache:
directories:
- .psc-package
- output
35 changes: 30 additions & 5 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -594,12 +594,13 @@
"foreign",
"foreign-object",
"generics-rep",
"identity",
"ordered-collections",
"proxy",
"record"
],
"repo": "https://github.com/paf31/purescript-foreign-generic.git",
"version": "v8.0.0"
"version": "v8.1.0"
},
"foreign-object": {
"dependencies": [
Expand Down Expand Up @@ -913,15 +914,37 @@
"httpure": {
"dependencies": [
"aff",
"arrays",
"bifunctors",
"console",
"control",
"effect",
"either",
"exceptions",
"foldable-traversable",
"foreign",
"lists",
"maybe",
"newtype",
"node-buffer",
"node-child-process",
"node-fs",
"node-fs-aff",
"node-http",
"node-streams",
"nullable",
"options",
"prelude",
"strings"
"psci-support",
"refs",
"spec",
"strings",
"tuples",
"type-equality",
"unsafe-coerce"
],
"repo": "https://github.com/cprussin/purescript-httpure.git",
"version": "v0.8.0"
"version": "v0.8.1"
},
"identity": {
"dependencies": [
Expand Down Expand Up @@ -1757,12 +1780,14 @@
},
"record-extra": {
"dependencies": [
"arrays",
"functions",
"lists",
"record",
"typelevel-prelude"
],
"repo": "https://github.com/justinwoo/purescript-record-extra.git",
"version": "v1.0.0"
"version": "v2.0.2"
},
"record-format": {
"dependencies": [
Expand Down Expand Up @@ -2276,7 +2301,7 @@
"maybe"
],
"repo": "https://github.com/zaquest/purescript-uint.git",
"version": "v5.1.0"
"version": "v5.1.1"
},
"unfoldable": {
"dependencies": [
Expand Down
24 changes: 23 additions & 1 deletion src/groups/cprussin.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,35 @@ let mkPackage = ./../mkPackage.dhall
in { httpure =
mkPackage
[ "aff"
, "arrays"
, "bifunctors"
, "console"
, "control"
, "effect"
, "either"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "lists"
, "maybe"
, "newtype"
, "node-buffer"
, "node-child-process"
, "node-fs"
, "node-fs-aff"
, "node-http"
, "node-streams"
, "nullable"
, "options"
, "prelude"
, "psci-support"
, "refs"
, "spec"
, "strings"
, "tuples"
, "type-equality"
, "unsafe-coerce"
]
"https://github.com/cprussin/purescript-httpure.git"
"v0.8.0"
"v0.8.1"
}
2 changes: 1 addition & 1 deletion src/groups/garyb.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ in { debug =
"v4.0.0"
, indexed-monad =
mkPackage
[ "newtype", "control" ]
[ "control", "newtype" ]
"https://github.com/garyb/purescript-indexed-monad.git"
"v1.0.0"
}
4 changes: 2 additions & 2 deletions src/groups/justinwoo.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ in { gomtang-basic =
"v6.0.0"
, record-extra =
mkPackage
[ "lists", "record", "typelevel-prelude" ]
[ "arrays", "functions", "lists", "record", "typelevel-prelude" ]
"https://github.com/justinwoo/purescript-record-extra.git"
"v1.0.0"
"v2.0.2"
, shoronpo =
mkPackage
[ "prelude", "record-format" ]
Expand Down
3 changes: 2 additions & 1 deletion src/groups/paf31.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ in { event =
, "foreign"
, "foreign-object"
, "generics-rep"
, "identity"
, "ordered-collections"
, "proxy"
, "record"
]
"https://github.com/paf31/purescript-foreign-generic.git"
"v8.0.0"
"v8.1.0"
, memoize =
mkPackage
[ "either"
Expand Down
8 changes: 4 additions & 4 deletions src/groups/spicydonuts.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ let mkPackage = ./../mkPackage.dhall

in { react-basic-hooks =
mkPackage
[ "effect"
, "console"
[ "console"
, "effect"
, "indexed-monad"
, "prelude"
, "react-basic"
, "unsafe-reference"
, "prelude"
, "indexed-monad"
]
"https://github.com/spicydonuts/purescript-react-basic-hooks.git"
"v0.6.0"
Expand Down
4 changes: 2 additions & 2 deletions src/groups/zaquest.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ let mkPackage = ./../mkPackage.dhall

in { uint =
mkPackage
[ "math", "maybe", "generics-rep" ]
[ "generics-rep", "math", "maybe" ]
"https://github.com/zaquest/purescript-uint.git"
"v5.1.0"
"v5.1.1"
}

0 comments on commit 858717a

Please sign in to comment.