@lwrjs/view-registry 0.8.0-alpha.9 → 0.9.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.
@@ -102,7 +102,7 @@ async function getHtmlResources(view, viewParams, resourceContext) {
102
102
  if (uri2) {
103
103
  imports[dynamicDep] = uri2;
104
104
  } else {
105
- console.warn("[WARN] Skipping unknown dynamic import " + dynamicDep);
105
+ import_shared_utils.logger.warn("Skipping unknown dynamic import " + dynamicDep);
106
106
  }
107
107
  }
108
108
  }
@@ -101,7 +101,7 @@ async function getHtmlResources(view, viewParams, resourceContext) {
101
101
  if (uri2) {
102
102
  imports[dynamicDep] = uri2;
103
103
  } else {
104
- console.warn("[WARN] Skipping unknown dynamic import " + dynamicDep);
104
+ import_shared_utils.logger.warn("Skipping unknown dynamic import " + dynamicDep);
105
105
  }
106
106
  }
107
107
  }
@@ -1,4 +1,4 @@
1
- import { kebabCaseToModuleSpecifer, getModuleGraphs, GraphDepth, getModuleUriPrefix, } from '@lwrjs/shared-utils';
1
+ import { kebabCaseToModuleSpecifer, getModuleGraphs, GraphDepth, getModuleUriPrefix, logger, } from '@lwrjs/shared-utils';
2
2
  import { AppResourceEnum, getAppSpecifier } from '@lwrjs/app-service/identity';
3
3
  import { generateHtmlTag, getModuleResource, getModuleResourceByUri } from '../utils.js';
4
4
  import { flattenCustomElements, getViewBootstrapConfigurationResource, getViewHmrConfigurationResource, } from './utils.js';
@@ -108,7 +108,7 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
108
108
  imports[dynamicDep] = uri;
109
109
  }
110
110
  else {
111
- console.warn('[WARN] Skipping unknown dynamic import ' + dynamicDep);
111
+ logger.warn('Skipping unknown dynamic import ' + dynamicDep);
112
112
  }
113
113
  }
114
114
  }
@@ -1,4 +1,4 @@
1
- import { kebabCaseToModuleSpecifer, toImportMetadata, getModuleGraphs, getMappingUriPrefix, GraphDepth, } from '@lwrjs/shared-utils';
1
+ import { kebabCaseToModuleSpecifer, toImportMetadata, getModuleGraphs, getMappingUriPrefix, GraphDepth, logger, } from '@lwrjs/shared-utils';
2
2
  import { AppResourceEnum, getAppSpecifier } from '@lwrjs/app-service/identity';
3
3
  import { generateHtmlTag, getModuleResource, getModuleResourceByUri } from '../utils.js';
4
4
  import { flattenCustomElements, getViewBootstrapConfigurationResource, getViewHmrConfigurationResource, } from './utils.js';
@@ -106,7 +106,7 @@ export async function getHtmlResources(view, viewParams, resourceContext) {
106
106
  imports[dynamicDep] = uri;
107
107
  }
108
108
  else {
109
- console.warn('[WARN] Skipping unknown dynamic import ' + dynamicDep);
109
+ logger.warn('Skipping unknown dynamic import ' + dynamicDep);
110
110
  }
111
111
  }
112
112
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.8.0-alpha.9",
7
+ "version": "0.9.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/app-service": "0.8.0-alpha.9",
34
- "@lwrjs/diagnostics": "0.8.0-alpha.9",
35
- "@lwrjs/shared-utils": "0.8.0-alpha.9"
33
+ "@lwrjs/app-service": "0.9.0-alpha.0",
34
+ "@lwrjs/diagnostics": "0.9.0-alpha.0",
35
+ "@lwrjs/shared-utils": "0.9.0-alpha.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@lwrjs/types": "0.8.0-alpha.9"
38
+ "@lwrjs/types": "0.9.0-alpha.0"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=14.15.4 <19"
42
42
  },
43
- "gitHead": "037c471903c6753fc6866ef598571b0df83e58f9"
43
+ "gitHead": "6890d8619b295a49ee1ed8253a372337d83863be"
44
44
  }