@ds-sfdc/sfparty 1.5.4 → 1.5.5
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/index.js +9 -3
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -582,7 +582,11 @@ function processSplit(typeItem, argv) {
|
|
|
582
582
|
: ''
|
|
583
583
|
}in `
|
|
584
584
|
displayMessageAndDuration(startTime, message)
|
|
585
|
-
|
|
585
|
+
if (errors > 0) {
|
|
586
|
+
resolve(false)
|
|
587
|
+
} else {
|
|
588
|
+
resolve(true)
|
|
589
|
+
}
|
|
586
590
|
})
|
|
587
591
|
})
|
|
588
592
|
}
|
|
@@ -762,11 +766,13 @@ function processCombine(typeItem, argv) {
|
|
|
762
766
|
})
|
|
763
767
|
const message = `Combined ${clc.bgBlackBright(successes)} file(s) ${
|
|
764
768
|
errors > 0
|
|
765
|
-
? 'with ' +
|
|
769
|
+
? 'with ' +
|
|
770
|
+
clc.bgBlackBright.red(processed.errors) +
|
|
771
|
+
' error(s) '
|
|
766
772
|
: ''
|
|
767
773
|
}in `
|
|
768
774
|
displayMessageAndDuration(startTime, message)
|
|
769
|
-
if (
|
|
775
|
+
if (errors > 0) {
|
|
770
776
|
resolve(false)
|
|
771
777
|
} else {
|
|
772
778
|
resolve(true)
|