sfdx-git-delta
Advanced tools
Comparing version 3.0.6 to 3.0.7
@@ -13,2 +13,12 @@ 'use strict' | ||
], | ||
[ | ||
'quickActions', | ||
'force-app/main/default/quickActions/Account.New.quickAction-meta.xml', | ||
new Set(['Account.New']), | ||
], | ||
[ | ||
'quickActions', | ||
'force-app/main/default/quickActions/NewGlobal.quickAction-meta.xml', | ||
new Set(['NewGlobal']), | ||
], | ||
], | ||
@@ -15,0 +25,0 @@ work: { |
@@ -54,4 +54,9 @@ 'use strict' | ||
} | ||
_getElementName() { | ||
const parsedPath = this._getParsedPath() | ||
return parsedPath.dir + parsedPath.name | ||
} | ||
} | ||
module.exports = ResourceHandler |
@@ -59,3 +59,3 @@ 'use strict' | ||
_getElementName() { | ||
_getParsedPath() { | ||
const parsedPath = path.parse( | ||
@@ -66,4 +66,8 @@ this.splittedLine[this.splittedLine.indexOf(this.type) + 1] | ||
) | ||
return parsedPath | ||
} | ||
return parsedPath.dir + parsedPath.name | ||
_getElementName() { | ||
const parsedPath = this._getParsedPath() | ||
return parsedPath.dir + parsedPath.base | ||
} | ||
@@ -70,0 +74,0 @@ |
{ | ||
"name": "sfdx-git-delta", | ||
"version": "3.0.6", | ||
"version": "3.0.7", | ||
"description": "Generate the sfdx content in source format and destructive change from two git commits", | ||
@@ -5,0 +5,0 @@ "keyword": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13065165
3939