@lwrjs/module-registry 0.11.4 → 0.12.0-alpha.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.
@@ -53,7 +53,10 @@ var LwrModuleRegistry = class {
53
53
  context.appObserver.onModuleSourceChange(async ({payload: moduleCompiled}) => {
54
54
  const id = moduleCompiled.id;
55
55
  if (!this.moduleDefCache.has(id)) {
56
- import_diagnostics.logger.warn(`Unable to find match in moduleDefCache: ${id}`);
56
+ import_diagnostics.logger.warn({
57
+ label: `${this.name}`,
58
+ message: `Unable to find match in moduleDefCache: ${id}`
59
+ });
57
60
  }
58
61
  this.moduleDefCache.delete(id);
59
62
  const linkedModules = this.moduleLinkedCache.get(id);
package/build/es/index.js CHANGED
@@ -26,7 +26,10 @@ export class LwrModuleRegistry {
26
26
  context.appObserver.onModuleSourceChange(async ({ payload: moduleCompiled }) => {
27
27
  const id = moduleCompiled.id;
28
28
  if (!this.moduleDefCache.has(id)) {
29
- logger.warn(`Unable to find match in moduleDefCache: ${id}`);
29
+ logger.warn({
30
+ label: `${this.name}`,
31
+ message: `Unable to find match in moduleDefCache: ${id}`,
32
+ });
30
33
  }
31
34
  this.moduleDefCache.delete(id);
32
35
  const linkedModules = this.moduleLinkedCache.get(id);
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.11.4",
7
+ "version": "0.12.0-alpha.0",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -30,15 +30,15 @@
30
30
  "build/**/*.d.ts"
31
31
  ],
32
32
  "dependencies": {
33
- "@lwrjs/diagnostics": "0.11.4",
34
- "@lwrjs/shared-utils": "0.11.4",
33
+ "@lwrjs/diagnostics": "0.12.0-alpha.0",
34
+ "@lwrjs/shared-utils": "0.12.0-alpha.0",
35
35
  "rollup": "^2.78.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@lwrjs/types": "0.11.4"
38
+ "@lwrjs/types": "0.12.0-alpha.0"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=16.0.0"
42
42
  },
43
- "gitHead": "5528cfc12174d4800ff42db1691d14c5d194f7d6"
43
+ "gitHead": "e79862bc238ededc3cf61f0d2c7d8120d1105a6b"
44
44
  }