@cloudant/couchbackup 2.11.2-SNAPSHOT-276 → 2.11.2-SNAPSHOT-277
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/includes/parser.js +2 -0
- package/package.json +2 -2
package/includes/parser.js
CHANGED
|
@@ -62,6 +62,7 @@ function parseBackupArgs() {
|
|
|
62
62
|
Number)
|
|
63
63
|
.option('-u, --url <url>',
|
|
64
64
|
cliutils.getUsage('URL of the CouchDB/Cloudant server', defaults.url))
|
|
65
|
+
.allowExcessArguments()
|
|
65
66
|
.parse(process.argv);
|
|
66
67
|
|
|
67
68
|
// Remove defaults that don't apply when using shallow mode
|
|
@@ -117,6 +118,7 @@ function parseRestoreArgs() {
|
|
|
117
118
|
Number)
|
|
118
119
|
.option('-u, --url <url>',
|
|
119
120
|
cliutils.getUsage('URL of the CouchDB/Cloudant server', defaults.url))
|
|
121
|
+
.allowExcessArguments()
|
|
120
122
|
.parse(process.argv);
|
|
121
123
|
|
|
122
124
|
// Apply the options in order so that the CLI overrides env vars and env variables
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudant/couchbackup",
|
|
3
|
-
"version": "2.11.2-SNAPSHOT-
|
|
3
|
+
"version": "2.11.2-SNAPSHOT-277",
|
|
4
4
|
"description": "CouchBackup - command-line backup utility for Cloudant/CouchDB",
|
|
5
5
|
"homepage": "https://github.com/IBM/couchbackup",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@ibm-cloud/cloudant": "0.11.0",
|
|
27
|
-
"commander": "
|
|
27
|
+
"commander": "13.0.0",
|
|
28
28
|
"debug": "4.4.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|