@salesforce/lds-default-luvio 1.235.0 → 1.236.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/dist/es/es2018/main.js +1 -1
- package/package.json +3 -3
- package/sfdc/ldsEngine.js +2 -1
- package/sfdc/ldsEngineNoAura.js +1 -1
package/dist/es/es2018/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-default-luvio",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.236.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "rendezvous point for producers & consumers of the default luvio instance",
|
|
6
6
|
"bugs": "This software is provided as-is with no support provided.",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"prepare": "yarn build",
|
|
49
|
-
"build": "rollup --config rollup.config.js",
|
|
49
|
+
"build": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
50
50
|
"clean": "rm -rf dist sfdc",
|
|
51
51
|
"test:unit": "jest",
|
|
52
52
|
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
|
|
53
53
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-default-luvio"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@luvio/engine": "0.
|
|
56
|
+
"@luvio/engine": "0.148.1"
|
|
57
57
|
},
|
|
58
58
|
"nx": {
|
|
59
59
|
"targets": {
|
package/sfdc/ldsEngine.js
CHANGED
|
@@ -147,6 +147,7 @@ function withDefaultLuvio(callback) {
|
|
|
147
147
|
* All rights reserved.
|
|
148
148
|
* For full license text, see the LICENSE.txt file
|
|
149
149
|
*/
|
|
150
|
+
// bundling of lds-default-luvio and @luvio/engine for core
|
|
150
151
|
// The code in lds-runtime-aura (force/ldsEngineCreator) depends on Aura module
|
|
151
152
|
// services to invoke its LDS initialization logic. Unfortunately, Aura component
|
|
152
153
|
// tests do not support module services and have no analogous function. The net
|
|
@@ -183,4 +184,4 @@ if (typeof $A !== 'undefined' &&
|
|
|
183
184
|
}
|
|
184
185
|
|
|
185
186
|
export { forEachRegistration, register, setDefaultLuvio, withDefaultLuvio, withRegistration };
|
|
186
|
-
// version: 1.
|
|
187
|
+
// version: 1.236.0-036823f57
|
package/sfdc/ldsEngineNoAura.js
CHANGED