@ds-sfdc/sfparty 1.3.15 → 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 +11 -11
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
|
@@ -377,14 +377,14 @@ export class Combine {
|
|
|
377
377
|
) {
|
|
378
378
|
that.#desPkg.addMember(
|
|
379
379
|
that.metadataDefinition.package[
|
|
380
|
-
|
|
381
|
-
'.' +
|
|
382
|
-
path
|
|
383
|
-
.dirname(fileObj.fullName)
|
|
384
|
-
.split('/')
|
|
385
|
-
.pop()
|
|
380
|
+
path.dirname(fileObj.fullName).split('/').pop()
|
|
386
381
|
],
|
|
387
|
-
|
|
382
|
+
that.#fileName.shortName +
|
|
383
|
+
'.' +
|
|
384
|
+
fileObj.shortName.replace(
|
|
385
|
+
`.${global.format}`,
|
|
386
|
+
'',
|
|
387
|
+
),
|
|
388
388
|
)
|
|
389
389
|
} else if (that.metadataDefinition.packageTypeIsDirectory) {
|
|
390
390
|
that.#desPkg.addMember(
|
|
@@ -461,11 +461,11 @@ export class Combine {
|
|
|
461
461
|
) {
|
|
462
462
|
that.#addPkg.addMember(
|
|
463
463
|
that.metadataDefinition.package[
|
|
464
|
-
|
|
465
|
-
'.' +
|
|
466
|
-
path.dirname(fileObj.fullName).split('/').pop()
|
|
464
|
+
path.dirname(fileObj.fullName).split('/').pop()
|
|
467
465
|
],
|
|
468
|
-
|
|
466
|
+
that.#fileName.shortName +
|
|
467
|
+
'.' +
|
|
468
|
+
fileObj.shortName.replace(`.${global.format}`, ''),
|
|
469
469
|
)
|
|
470
470
|
} else if (that.metadataDefinition.packageTypeIsDirectory) {
|
|
471
471
|
that.#addPkg.addMember(
|