@salesforce/lds-adapters-cms-type 1.261.0 → 1.262.0
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 +4 -5
- package/sfdc/index.js +2 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-cms-type",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters for cms content type",
|
|
6
6
|
"main": "dist/es/es2018/cms-type.js",
|
|
@@ -40,15 +40,14 @@
|
|
|
40
40
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-cms-type",
|
|
41
41
|
"start": "nx build:karma && karma start",
|
|
42
42
|
"test": "nx build:karma && karma start --single-run",
|
|
43
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
44
43
|
"test:unit": "jest"
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -392,11 +392,8 @@ function bindExportsTo(luvio) {
|
|
|
392
392
|
};
|
|
393
393
|
}
|
|
394
394
|
withDefaultLuvio((luvio) => {
|
|
395
|
-
({
|
|
396
|
-
getContentType,
|
|
397
|
-
getContentType_imperative,
|
|
398
|
-
} = bindExportsTo(luvio));
|
|
395
|
+
({ getContentType, getContentType_imperative } = bindExportsTo(luvio));
|
|
399
396
|
});
|
|
400
397
|
|
|
401
398
|
export { getContentType, getContentType_imperative };
|
|
402
|
-
// version: 1.
|
|
399
|
+
// version: 1.262.0-d3c071fdc
|