@nxtedition/lib 23.3.5 → 23.3.6
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/app.js +2 -2
- package/couch.js +5 -0
- package/package.json +1 -1
package/app.js
CHANGED
|
@@ -1081,7 +1081,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
1081
1081
|
}
|
|
1082
1082
|
}
|
|
1083
1083
|
|
|
1084
|
-
return {
|
|
1084
|
+
return (globalThis.__nxt_lib_app = {
|
|
1085
1085
|
ds,
|
|
1086
1086
|
nxt,
|
|
1087
1087
|
logger,
|
|
@@ -1100,5 +1100,5 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
1100
1100
|
serviceInstanceId,
|
|
1101
1101
|
serviceWorkerId,
|
|
1102
1102
|
signal: ac.signal,
|
|
1103
|
-
}
|
|
1103
|
+
})
|
|
1104
1104
|
}
|
package/couch.js
CHANGED