@salesforce/source-tracking 2.2.11 → 2.2.12
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.
|
@@ -21,9 +21,6 @@ const typesToNoPollFor = [
|
|
|
21
21
|
'GlobalValueSetTranslation',
|
|
22
22
|
'AssignmentRules',
|
|
23
23
|
'InstalledPackage',
|
|
24
|
-
'DigitalExperienceBundle',
|
|
25
|
-
'DigitalExperience',
|
|
26
|
-
'DigitalExperienceConfig',
|
|
27
24
|
];
|
|
28
25
|
const typesNotToPollForIfNamespace = ['CustomLabels', 'CustomMetadata', 'DuplicateRule', 'WebLink'];
|
|
29
26
|
const isEncodedTypeWithPercentSign = (type, filePath) => ['Layout', 'Profile', 'HomePageComponent', 'HomePageLayout', 'MilestoneType'].includes(type) &&
|
package/lib/shared/functions.js
CHANGED
|
@@ -18,7 +18,7 @@ const getKeyFromObject = (element) => {
|
|
|
18
18
|
throw new Error(`unable to complete key from ${JSON.stringify(element)}`);
|
|
19
19
|
};
|
|
20
20
|
exports.getKeyFromObject = getKeyFromObject;
|
|
21
|
-
const isBundle = (cmp) => cmp.type.strategies?.adapter === 'bundle';
|
|
21
|
+
const isBundle = (cmp) => cmp.type.strategies?.adapter === 'bundle' || cmp.type.strategies?.adapter === 'digitalExperience';
|
|
22
22
|
exports.isBundle = isBundle;
|
|
23
23
|
const isLwcLocalOnlyTest = (filePath) => filePath.includes('__utam__') || filePath.includes('__tests__');
|
|
24
24
|
exports.isLwcLocalOnlyTest = isLwcLocalOnlyTest;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/source-tracking",
|
|
3
3
|
"description": "API for tracking local and remote Salesforce metadata changes",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.12",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
7
7
|
"main": "lib/index.js",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"sinon": "^10.0.0",
|
|
79
79
|
"ts-node": "^10.9.1",
|
|
80
80
|
"ts-prune": "^0.10.0",
|
|
81
|
-
"typescript": "^4.
|
|
81
|
+
"typescript": "^4.8.4"
|
|
82
82
|
},
|
|
83
83
|
"config": {},
|
|
84
84
|
"publishConfig": {
|