Skip to content

Commit 5557bb5

Browse files
authored
Merge pull request #33 from go-kivik/pouch7
Add support for PouchDB 7.0.0
2 parents c0b2767 + 3edce4a commit 5557bb5

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
pouch__all_dbs__
22
/vendor
33
/node_modules
4+
package-lock.json
45
test.*
56
*~
67
glide.lock

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ env:
1919
global:
2020
- KIVIK_TEST_DSN_COUCH21="http://admin:abc123@localhost:6002/"
2121
matrix:
22-
- MODE=standard
22+
- MODE=standard NPM_PROFILE=pouchdb6-package.json
23+
- MODE=standard NPM_PROFILE=pouchdb7-package.json
2324
- MODE=linter
2425

2526
install:
File renamed without changes.

pouchdb7-package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "kivik-pouchdb",
3+
"version": "1.0.0",
4+
"description": "PouchDB driver for Kivik",
5+
"author": "Jonathan Hall <[email protected]>",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/go-kivik/pouchdb"
9+
},
10+
"devDependencies": {
11+
"inherits": "^2.0.3",
12+
"memdown": "^3.0.0",
13+
"pouchdb": "^7.0.0",
14+
"pouchdb-all-dbs": "^1.0.2",
15+
"pouchdb-find": "^7.0.0",
16+
"source-map-support": "^0.5.9",
17+
"xhr2": "^0.1.4"
18+
}
19+
}

travis/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ case "$1" in
4040
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
4141
sudo apt-get update -qq
4242
sudo apt-get install -y nodejs
43+
cp "$NPM_PROFILE" package.json
4344
npm install
4445
# Then install GopherJS and related dependencies
4546
go get -u github.com/gopherjs/gopherjs

0 commit comments

Comments
 (0)