Skip to content

Commit 86d29d6

Browse files
committed
Merge pull request #9 from shernshiou/fix-pgjs
Migrate from pg.js back to pg
2 parents c0764dc + c1d7fc9 commit 86d29d6

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directory
26+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
27+
node_modules

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var pg = require('pg.js')
1+
var pg = require('pg')
22
, QueryStream = require('pg-query-stream')
33
, inherits = require('inherits')
44

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"author": "Stephen Sugden <[email protected]>",
2525
"license": "MIT",
2626
"dependencies": {
27-
"pg.js": "*",
27+
"pg": "*",
2828
"pg-query-stream": "~0.2.0",
2929
"inherits": "~2.0.1"
3030
},

0 commit comments

Comments
 (0)