Skip to content

Commit

Permalink
F/rxjs6+ (#9)
Browse files Browse the repository at this point in the history
* update rxjs version

* 0.3.4

* update dependencies
  • Loading branch information
haoliangyu authored May 19, 2018
1 parent adb6b5a commit 964d3fe
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 57 deletions.
115 changes: 65 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg-reactive",
"version": "0.3.3",
"version": "0.3.4",
"description": "RxJS 5 interface for PostgreSQL",
"main": "dist/pg-reactive.js",
"types": "typescript/pg-reactive.d.ts",
Expand Down Expand Up @@ -28,7 +28,7 @@
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-rewire": "^1.1.0",
"babel-preset-es2015": "^6.24.1",
Expand All @@ -40,12 +40,12 @@
"eslint": "^4.19.1",
"eslint-plugin-json": "^1.2.0",
"husky": "^0.14.3",
"mocha": "^5.1.0"
"mocha": "^5.2.0"
},
"dependencies": {
"is-observable": "^1.1.0",
"pg": "^7.4.1",
"pg": "^7.4.3",
"pg-query-stream": "^1.1.1",
"rxjs": "^5.5.10"
"rxjs": ">=5"
}
}
3 changes: 1 addition & 2 deletions src/pg-reactive.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ export default class pgrx {
/**
* Initalize a database connection.
* @param {String|Object} config PostgreSQL database connection string or config object
* @param {Object} [options] Connection options
*/
constructor(config, options = {}) {
constructor(config) {

if (typeof config === 'string') {
const params = url.parse(config);
Expand Down

0 comments on commit 964d3fe

Please sign in to comment.