Skip to content

Commit 5820114

Browse files
committed
update pouchdb to v6.0.4
1 parent d50c311 commit 5820114

File tree

4 files changed

+37
-22
lines changed

4 files changed

+37
-22
lines changed

example/package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"name": "example",
3-
"version": "5.5.0-beta-2",
4-
"author": "Christoph Stock (@stockulus)",
5-
"description": "small example app for pouchdb-react-native",
3+
"version": "6.1.0-beta-3",
4+
"author": {
5+
"name": "Christoph Stock",
6+
"email": "[email protected]",
7+
"url": "https://twitter.com/stockulus"
8+
},
9+
"description": "small example / test app for pouchdb-react-native",
610
"license": "MIT",
711
"repository": {
812
"type": "git",
@@ -18,7 +22,7 @@
1822
"postinstall": "npm run copy-packages"
1923
},
2024
"dependencies": {
21-
"pouchdb-react-native": "5.5.0-beta-2",
25+
"pouchdb-react-native": "6.1.0-beta-3",
2226
"react": "15.3.1",
2327
"react-native": "0.32.0",
2428
"react-native-action-button": "2.0.1"

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@
2222
"postinstall": "for D in ./packages/*; do cd $D; npm install; cd -; done && cd example && npm install && cd ../pouchdb-original && npm install",
2323
"updtr": "updtr --save-exact && cd example && updtr --save-exact && cd .. && for D in ./packages/*; do echo $D; cd $D; npm run updtr; cd -; done"
2424
},
25-
"author": "Christoph Stock (@stockulus)",
25+
"author": {
26+
"name": "Christoph Stock",
27+
"email": "[email protected]",
28+
"url": "https://twitter.com/stockulus"
29+
},
2630
"license": "MIT",
2731
"bugs": {
2832
"url": "https://github.com/stockulus/pouchdb-react-native/issues"
@@ -40,8 +44,7 @@
4044
"standard": {
4145
"ignore": [
4246
"node_modules/**",
43-
"pouchdb-original/**",
44-
"packages/pouchdb-adapter-leveldb-core-rn/**"
47+
"pouchdb-original/**"
4548
]
4649
}
4750
}

packages/pouchdb-adapter-asyncstorage/package.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pouchdb-adapter-asyncstorage",
3-
"version": "5.5.0-beta-2",
3+
"version": "6.1.0-beta-3",
44
"description": "asyncstorage adapter for PouchDB",
55
"main": "./src/index.js",
66
"repository": {
@@ -16,7 +16,11 @@
1616
"scripts": {
1717
"updtr": "updtr --save-exact"
1818
},
19-
"author": "Christoph Stock (@stockulus)",
19+
"author": {
20+
"name": "Christoph Stock",
21+
"email": "[email protected]",
22+
"url": "https://twitter.com/stockulus"
23+
},
2024
"license": "MIT",
2125
"bugs": {
2226
"url": "https://github.com/stockulus/pouchdb-react-native/issues"
@@ -29,12 +33,12 @@
2933
"buffer": "4.9.1",
3034
"events": "1.1.1",
3135
"left-pad": "1.1.1",
32-
"pouchdb-adapter-utils": "5.4.5",
33-
"pouchdb-binary-utils": "5.4.5",
34-
"pouchdb-errors": "5.4.5",
35-
"pouchdb-md5": "5.4.5",
36-
"pouchdb-merge": "5.4.5",
37-
"pouchdb-utils": "5.4.5"
36+
"pouchdb-adapter-utils": "6.0.4",
37+
"pouchdb-binary-utils": "6.0.4",
38+
"pouchdb-errors": "6.0.4",
39+
"pouchdb-md5": "6.0.4",
40+
"pouchdb-merge": "6.0.4",
41+
"pouchdb-utils": "6.0.4"
3842
},
3943
"devDependencies": {},
4044
"peerDependencies": {},

packages/pouchdb-react-native/package.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pouchdb-react-native",
3-
"version": "5.5.0-beta-2",
3+
"version": "6.1.0-beta-3",
44
"description": "PouchDB Bundle for ReactNative",
55
"main": "index.js",
66
"repository": {
@@ -16,18 +16,22 @@
1616
"scripts": {
1717
"updtr": "updtr --save-exact"
1818
},
19-
"author": "Christoph Stock (@stockulus)",
19+
"author": {
20+
"name": "Christoph Stock",
21+
"email": "[email protected]",
22+
"url": "https://twitter.com/stockulus"
23+
},
2024
"license": "MIT",
2125
"bugs": {
2226
"url": "https://github.com/stockulus/pouchdb-react-native/issues"
2327
},
2428
"homepage": "https://github.com/stockulus/pouchdb-react-native#readme",
2529
"dependencies": {
26-
"pouchdb-adapter-asyncstorage": "5.5.0-beta-2",
27-
"pouchdb-adapter-http": "5.4.5",
28-
"pouchdb-core": "5.4.5",
29-
"pouchdb-mapreduce": "5.4.5",
30-
"pouchdb-replication": "5.4.5"
30+
"pouchdb-adapter-asyncstorage": "6.1.0-beta-3",
31+
"pouchdb-adapter-http": "6.0.4",
32+
"pouchdb-core": "6.0.4",
33+
"pouchdb-mapreduce": "6.0.4",
34+
"pouchdb-replication": "6.0.4"
3135
},
3236
"devDependencies": {},
3337
"peerDependencies": {},

0 commit comments

Comments
 (0)