Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pouchdb replicator #209

Merged
merged 21 commits into from
Feb 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8fb99eb
PouchDB plugin updates. (new replicator plug-in initial code - pretty…
marten-de-vries Jun 30, 2014
3a54f47
A bunch of JS improvements (incl. replicator module (experimental)) &…
marten-de-vries Jul 4, 2014
117b3b8
Improved docs + JS
marten-de-vries Jul 6, 2014
0fccb76
Improvements to replicator + auth; documentation translations
marten-de-vries Jul 10, 2014
7f4a1fe
Smaller JS modules.
marten-de-vries Aug 19, 2014
d3ca1cb
Makes _users and _replicator databases system databases (sets extra p…
marten-de-vries Aug 31, 2014
ffcdfde
JS is all at 1.0.0 at least now & published.
marten-de-vries Sep 1, 2014
1f116b8
Fixed a bug in pouchdb-wrappers
marten-de-vries Sep 2, 2014
b2e4085
pouchdb-replicator update.
marten-de-vries Sep 10, 2014
e43d8f1
Improvements to pouchdb-replicator
marten-de-vries Dec 1, 2014
5b5f0dc
Plug-in improvements
marten-de-vries Jan 9, 2015
d98aa30
2.1.2; moved to github
marten-de-vries Aug 18, 2015
875fa64
(pouchdb/express-pouchdb#232) - Modernize pouchdb-replicator
marten-de-vries Dec 26, 2015
f4d291f
2.1.3
marten-de-vries Feb 5, 2016
a16766f
chore(package): update dependencies
greenkeeperio-bot Feb 5, 2016
8f00b7a
chore(package): update pouchdb-plugin-helper to version 3.0.0
greenkeeperio-bot Feb 14, 2016
4008445
chore(package): update random-uuid-v4 to version 0.0.6
greenkeeperio-bot May 15, 2016
a23135f
Add 'packages/node_modules/pouchdb-replicator/' from commit '40084455…
garrensmith Feb 20, 2017
18bff78
add pouchdb-replicator to the repo
garrensmith Feb 20, 2017
1543a57
convert tests to es2015
garrensmith Feb 21, 2017
f554e0f
remove packages
garrensmith Feb 22, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"version": "2.3.4",
"scripts": {
"unit-tests": "mocha tests/**/*",
"unit-tests": "mocha --opts ./tests/mocha.opts tests/**/*",
"test-pouchdb": "./bin/test-setup.sh && ./bin/test-pouchdb.sh",
"test-couchdb": "./bin/test-couchdb.sh",
"eslint": "eslint bin/ packages/node_modules/**/src tests/",
Expand All @@ -21,6 +21,7 @@
"couchdb-harness": "*",
"couchdb-log-parse": "^0.0.4",
"denodeify": "^1.2.1",
"equals": "^1.0.5",
"express": "^4.10.4",
"extend": "^3.0.0",
"find-requires": "^0.2.2",
Expand All @@ -46,17 +47,21 @@
"pouchdb-find": "^0.10.4",
"pouchdb-list": "^1.1.0",
"pouchdb-mapreduce": "^6.1.0",
"pouchdb-promise": "6.1.2",
"pouchdb-plugin-error": "^1.0.1",
"pouchdb-promise": "^6.1.2",
"pouchdb-replication": "^6.1.0",
"pouchdb-replicator": "^2.1.3",
"pouchdb-rewrite": "^1.0.7",
"pouchdb-security": "^1.2.6",
"pouchdb-show": "^1.0.8",
"pouchdb-size": "^1.2.2",
"pouchdb-system-db": "^1.0.4",
"pouchdb-update": "^1.0.8",
"pouchdb-validation": "^1.2.1",
"pouchdb-vhost": "^1.0.2",
"pouchdb-wrappers": "^1.3.6",
"promise-nodify": "^1.0.2",
"random-uuid-v4": "0.0.6",
"raw-body": "^2.2.0",
"sanitize-filename": "^1.6.1",
"serve-favicon": "~2.3.2",
Expand All @@ -76,6 +81,7 @@
"lodash.uniq": "^4.5.0",
"memdown": "^1.2.4",
"mocha": "^3.2.0",
"pouchdb-plugin-helper": "^3.0.2",
"supertest": "^3.0.0"
},
"optionalDependencies": {
Expand Down
202 changes: 202 additions & 0 deletions packages/node_modules/pouchdb-replicator/LICENSE

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

49 changes: 49 additions & 0 deletions packages/node_modules/pouchdb-replicator/README.md

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

Loading