chayns-api 1.2.0-11 → 1.2.0-12

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.
@@ -21,6 +21,12 @@ const loadModule = (scope, module, url, preventSingleton = false, shareScope = '
21
21
  if (scope in registeredScopes) {
22
22
  console.error(`[chayns-api] call registerRemote with force for scope ${scope}. url: ${url}`);
23
23
  }
24
+ console.log("register remote ", {
25
+ shareScope,
26
+ name: scope,
27
+ entry: url,
28
+ alias: scope
29
+ });
24
30
  registerRemotes([{
25
31
  shareScope,
26
32
  name: scope,
@@ -16,6 +16,12 @@ export const loadModule = function (scope, module, url) {
16
16
  if (scope in registeredScopes) {
17
17
  console.error(`[chayns-api] call registerRemote with force for scope ${scope}. url: ${url}`);
18
18
  }
19
+ console.log("register remote ", {
20
+ shareScope,
21
+ name: scope,
22
+ entry: url,
23
+ alias: scope
24
+ });
19
25
  registerRemotes([{
20
26
  shareScope,
21
27
  name: scope,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "1.2.0-11",
3
+ "version": "1.2.0-12",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",