@ds-sfdc/sfparty 1.4.6 → 1.4.7
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 +2 -2
package/package.json
CHANGED
package/src/party/combine.js
CHANGED
|
@@ -142,8 +142,8 @@ export class Combine {
|
|
|
142
142
|
i.toLowerCase().includes(`/main.${global.format}`),
|
|
143
143
|
)
|
|
144
144
|
|
|
145
|
-
// set delta based on metadata definition
|
|
146
|
-
that.#delta = that.metadataDefinition.delta && global.git.
|
|
145
|
+
// set delta based on metadata definition if git delta enabled
|
|
146
|
+
that.#delta = that.metadataDefinition.delta && global.git.delta
|
|
147
147
|
|
|
148
148
|
let success = processParts(that)
|
|
149
149
|
// Ensure we only match existing metadata type directory and item
|