@ds-sfdc/sfparty 1.3.14 → 1.3.15
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/party/combine.js +9 -2
package/package.json
CHANGED
package/src/party/combine.js
CHANGED
|
@@ -377,7 +377,12 @@ export class Combine {
|
|
|
377
377
|
) {
|
|
378
378
|
that.#desPkg.addMember(
|
|
379
379
|
that.metadataDefinition.package[
|
|
380
|
-
|
|
380
|
+
that.#fileName.shortName +
|
|
381
|
+
'.' +
|
|
382
|
+
path
|
|
383
|
+
.dirname(fileObj.fullName)
|
|
384
|
+
.split('/')
|
|
385
|
+
.pop()
|
|
381
386
|
],
|
|
382
387
|
fileObj.shortName.replace(`.${global.format}`, ''),
|
|
383
388
|
)
|
|
@@ -456,7 +461,9 @@ export class Combine {
|
|
|
456
461
|
) {
|
|
457
462
|
that.#addPkg.addMember(
|
|
458
463
|
that.metadataDefinition.package[
|
|
459
|
-
|
|
464
|
+
that.#fileName.shortName +
|
|
465
|
+
'.' +
|
|
466
|
+
path.dirname(fileObj.fullName).split('/').pop()
|
|
460
467
|
],
|
|
461
468
|
fileObj.shortName.replace(`.${global.format}`, ''),
|
|
462
469
|
)
|