Skip to content

Commit

Permalink
Update node-pg
Browse files Browse the repository at this point in the history
 - connect seemed to be failing silently

Reviewed by: pbrant
  • Loading branch information
dstevenson1 committed Jun 14, 2022
1 parent 91d4b82 commit 05c1ed1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 45 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
},
"dependencies": {
"decimal.js": "10.2.0",
"pg": "^7.11.0",
"yargs": "^8.0.2"
"pg": "^8.7.3",
"yargs": "^17.5.1"
},
"devDependencies": {
"spago": "^0.13.0",
"dotenv-cli": "^3.0.0",
"purescript": "^0.13.8",
"purescript-language-server": "^0.12.7",
"purescript-psa": "^0.7.3",
"purty": "6.2.0",
"rimraf": "^2.6.2"
"rimraf": "^2.6.2",
"spago": "^0.13.0"
}
}
77 changes: 36 additions & 41 deletions packages.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,43 @@ let overrides = {=}

let additions =
{ boxes =
{ dependencies =
[ "profunctor"
, "prelude"
, "stringutils"
, "generics-rep"
, "strings"
]
, repo = "https://github.com/cdepillabout/purescript-boxes.git"
, version = "v2.0.1"
}
{ dependencies =
[ "profunctor", "prelude", "stringutils", "generics-rep", "strings" ]
, repo = "https://github.com/cdepillabout/purescript-boxes.git"
, version = "v2.0.1"
}
, postgresql-client =
{ dependencies =
[ "aff"
, "argonaut"
, "arrays"
, "assert"
, "bifunctors"
, "bytestrings"
, "console"
, "datetime"
, "decimals"
, "effect"
, "either"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "foreign-generic"
, "foreign-object"
, "js-date"
, "lists"
, "maybe"
, "newtype"
, "nullable"
, "prelude"
, "psci-support"
, "test-unit"
, "transformers"
, "tuples"
]
, repo = "https://github.com/pbrant/purescript-postgresql-client.git"
, version = "7188cd732eb7981910915fb5e8ab8b158abda95b"
}
{ dependencies =
[ "aff"
, "argonaut"
, "arrays"
, "assert"
, "bifunctors"
, "bytestrings"
, "console"
, "datetime"
, "decimals"
, "effect"
, "either"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "foreign-generic"
, "foreign-object"
, "js-date"
, "lists"
, "maybe"
, "newtype"
, "nullable"
, "prelude"
, "psci-support"
, "test-unit"
, "transformers"
, "tuples"
]
, repo = "https://github.com/pbrant/purescript-postgresql-client.git"
, version = "7188cd732eb7981910915fb5e8ab8b158abda95b"
}
}

in upstream // overrides // additions

0 comments on commit 05c1ed1

Please sign in to comment.