@ds-sfdc/sfparty 1.3.14 → 1.3.16
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 +2 -5
- package/src/party/combine.js +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ds-sfdc/sfparty",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.16",
|
|
4
4
|
"description": "Salesforce metadata XML splitter for CI/CD",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"license": "BSD-3-Clause",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"axios": "^1.2.2",
|
|
27
|
-
"chai-as-promised": "^7.1.1",
|
|
28
27
|
"cli-color": "^2.0.3",
|
|
29
28
|
"cli-spinners": "^2.7.0",
|
|
30
29
|
"convert-hrtime": "^5.0.0",
|
|
@@ -48,10 +47,8 @@
|
|
|
48
47
|
"babel-jest": "^29.3.1",
|
|
49
48
|
"husky": "^8.0.3",
|
|
50
49
|
"jest": "^29.3.1",
|
|
51
|
-
"mocha": "^10.2.0",
|
|
52
50
|
"nodemon": "^2.0.20",
|
|
53
|
-
"prettier": "^2.8.3"
|
|
54
|
-
"should": "^7.1.0"
|
|
51
|
+
"prettier": "^2.8.3"
|
|
55
52
|
},
|
|
56
53
|
"engines": {
|
|
57
54
|
"node": ">=0.11"
|
package/src/party/combine.js
CHANGED
|
@@ -379,7 +379,12 @@ export class Combine {
|
|
|
379
379
|
that.metadataDefinition.package[
|
|
380
380
|
path.dirname(fileObj.fullName).split('/').pop()
|
|
381
381
|
],
|
|
382
|
-
|
|
382
|
+
that.#fileName.shortName +
|
|
383
|
+
'.' +
|
|
384
|
+
fileObj.shortName.replace(
|
|
385
|
+
`.${global.format}`,
|
|
386
|
+
'',
|
|
387
|
+
),
|
|
383
388
|
)
|
|
384
389
|
} else if (that.metadataDefinition.packageTypeIsDirectory) {
|
|
385
390
|
that.#desPkg.addMember(
|
|
@@ -458,7 +463,9 @@ export class Combine {
|
|
|
458
463
|
that.metadataDefinition.package[
|
|
459
464
|
path.dirname(fileObj.fullName).split('/').pop()
|
|
460
465
|
],
|
|
461
|
-
|
|
466
|
+
that.#fileName.shortName +
|
|
467
|
+
'.' +
|
|
468
|
+
fileObj.shortName.replace(`.${global.format}`, ''),
|
|
462
469
|
)
|
|
463
470
|
} else if (that.metadataDefinition.packageTypeIsDirectory) {
|
|
464
471
|
that.#addPkg.addMember(
|