@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.ts +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fazetitans/fscopy",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Fast CLI tool to copy Firestore collections between Firebase projects with filtering, parallel transfers, and subcollection support",
5
5
  "type": "module",
6
6
  "bin": {
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',