@fazetitans/fscopy 1.3.0 → 1.3.1
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/package.json +1 -1
- package/src/cli.ts +0 -4
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -111,23 +111,19 @@ const argv = yargs(hideBin(process.argv))
|
|
|
111
111
|
alias: 'm',
|
|
112
112
|
type: 'boolean',
|
|
113
113
|
description: 'Merge documents instead of overwriting',
|
|
114
|
-
default: false,
|
|
115
114
|
})
|
|
116
115
|
.option('parallel', {
|
|
117
116
|
alias: 'p',
|
|
118
117
|
type: 'number',
|
|
119
118
|
description: 'Number of parallel collection transfers (default: 1)',
|
|
120
|
-
default: 1,
|
|
121
119
|
})
|
|
122
120
|
.option('clear', {
|
|
123
121
|
type: 'boolean',
|
|
124
122
|
description: 'Clear destination collections before transfer (DESTRUCTIVE)',
|
|
125
|
-
default: false,
|
|
126
123
|
})
|
|
127
124
|
.option('delete-missing', {
|
|
128
125
|
type: 'boolean',
|
|
129
126
|
description: 'Delete destination docs not present in source (sync mode)',
|
|
130
|
-
default: false,
|
|
131
127
|
})
|
|
132
128
|
.option('interactive', {
|
|
133
129
|
alias: 'i',
|