@salesforce/lds-adapters-platform-flow-builder 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-platform-flow-builder",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "API related to flow builder",
|
|
6
6
|
"main": "dist/es/es2018/platform-flow-builder.js",
|
|
@@ -34,16 +34,15 @@
|
|
|
34
34
|
"clean": "rm -rf dist sfdc src/generated karma/dist",
|
|
35
35
|
"start": "nx build:karma && karma start",
|
|
36
36
|
"test": "nx build:karma && karma start --single-run",
|
|
37
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
38
37
|
"test:unit": "jest",
|
|
39
38
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-platform-flow-builder"
|
|
40
39
|
},
|
|
41
40
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
41
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
44
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
45
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
47
46
|
},
|
|
48
47
|
"nx": {
|
|
49
48
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -879,11 +879,8 @@ function bindExportsTo(luvio) {
|
|
|
879
879
|
};
|
|
880
880
|
}
|
|
881
881
|
withDefaultLuvio((luvio) => {
|
|
882
|
-
({
|
|
883
|
-
getRules,
|
|
884
|
-
getRules_imperative,
|
|
885
|
-
} = bindExportsTo(luvio));
|
|
882
|
+
({ getRules, getRules_imperative } = bindExportsTo(luvio));
|
|
886
883
|
});
|
|
887
884
|
|
|
888
885
|
export { getRules, getRules_imperative };
|
|
889
|
-
// version: 1.
|
|
886
|
+
// version: 1.262.1-9a1924e93
|