@salesforce/lds-adapters-commerce-store-pricing 1.261.0 → 1.262.1
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-commerce-store-pricing",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapters Commerce Store Pricing",
|
|
6
6
|
"main": "dist/es/es2018/commerce-store-pricing.js",
|
|
@@ -24,16 +24,15 @@
|
|
|
24
24
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
25
25
|
"start": "nx build:karma && karma start",
|
|
26
26
|
"test": "nx build:karma && karma start --single-run",
|
|
27
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
28
27
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-commerce-store-pricing",
|
|
29
28
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-commerce-store-pricing"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@salesforce/lds-bindings": "^1.
|
|
31
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
36
|
-
"@salesforce/lds-karma": "^1.
|
|
34
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
35
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
37
36
|
},
|
|
38
37
|
"nx": {
|
|
39
38
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -406,11 +406,8 @@ function bindExportsTo(luvio) {
|
|
|
406
406
|
};
|
|
407
407
|
}
|
|
408
408
|
withDefaultLuvio((luvio) => {
|
|
409
|
-
({
|
|
410
|
-
getProductPrice,
|
|
411
|
-
getProductPrice_imperative,
|
|
412
|
-
} = bindExportsTo(luvio));
|
|
409
|
+
({ getProductPrice, getProductPrice_imperative } = bindExportsTo(luvio));
|
|
413
410
|
});
|
|
414
411
|
|
|
415
412
|
export { getProductPrice, getProductPrice_imperative };
|
|
416
|
-
// version: 1.
|
|
413
|
+
// version: 1.262.1-9a1924e93
|