Skip to content

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
falsecz committed Jun 28, 2016
1 parent 5fe1a6a commit 8d7b507
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
lib
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src
test
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: node_js
node_js:
- "0.12"
- "4"
- "6"
postgres:
Expand Down
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
compile:
./node_modules/.bin/coffee -o lib -c src/*.coffee


all:
@npm install
test: compile test-js

publish:
npm publish --tag 2.0.0
# all:
# @npm install

test-js:
@echo '>>>>>> testing pure javascript driver'
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
require('coffee-script').register();
module.exports = require('./lib');
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "easy-pg",
"version": "1.0.5",
"version": "2.0.0",
"scripts": {
"test": "make test-js; make test-native",
"test": "make test",
"lint": "coffeelint --f coffeelint.json *.coffee lib/* test/*"
},
"repository": {
Expand All @@ -22,19 +22,19 @@
],
"license": "BSD",
"engines": {
"node": "0.10.x"
"node": ">=4"
},
"devDependencies": {
"mocha": "~2.0.1",
"chai": "~1.9.2"
"chai": "~1.9.2",
"coffee-script": "^1.7.1"
},
"peerDependencies": {
"pg": "6.x.x"
},
"dependencies": {
"async": "^0.9.0",
"chai": "^1.9.1",
"coffee-script": "^1.7.1",
"debug": "^2.1.0",
"glob": "^4.0.3",
"mocha": "^2.0.1",
"pg": "^3.3.0"
"glob": "^4.0.3"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 8d7b507

Please sign in to comment.