@ds-sfdc/sfparty 1.2.2 → 1.2.3

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/index.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ds-sfdc/sfparty",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Salesforce metadata XML splitter for CI/CD",
5
5
  "type": "module",
6
6
  "repository": {
package/src/index.js CHANGED
@@ -244,7 +244,7 @@ yargs(hideBin(process.argv))
244
244
  })
245
245
  }
246
246
  }
247
-
247
+ resolve(false)
248
248
  })
249
249
  startProm.then((result) => {
250
250
  global.git.enabled = result
@@ -445,6 +445,9 @@ function combineHandler(argv, startTime) {
445
445
  }
446
446
  }
447
447
  })
448
+ combine.catch((error) => {
449
+ throw error
450
+ })
448
451
 
449
452
  }
450
453