@lwrjs/base-view-transformer 0.11.0-alpha.8 → 0.11.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.
@@ -54,7 +54,7 @@ function baseViewTransformer(options, lwrGlobalContext) {
54
54
  }
55
55
  } catch (e) {
56
56
  if (e instanceof import_diagnostics.LwrUnresolvableError || e.diagnostics) {
57
- import_shared_utils.logger.warn("Asset was not found for " + (ref.url || "empty url"));
57
+ import_diagnostics.logger.warn("Asset was not found for " + (ref.url || "empty url"));
58
58
  return ref;
59
59
  }
60
60
  throw e;
package/build/es/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { LwrUnresolvableError } from '@lwrjs/diagnostics';
2
- import { isModuleOrBundleUrl, logger } from '@lwrjs/shared-utils';
1
+ import { LwrUnresolvableError, logger } from '@lwrjs/diagnostics';
2
+ import { isModuleOrBundleUrl } from '@lwrjs/shared-utils';
3
3
  function applyImmutableUrlsToSource(codeStringBuilder, assetReferences) {
4
4
  assetReferences.forEach((assetRef) => {
5
5
  const { override, url, location: { startOffset, endOffset }, } = assetRef;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.11.0-alpha.8",
7
+ "version": "0.11.0",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -30,14 +30,14 @@
30
30
  "build/**/*.d.ts"
31
31
  ],
32
32
  "dependencies": {
33
- "@lwrjs/diagnostics": "0.11.0-alpha.8",
34
- "@lwrjs/shared-utils": "0.11.0-alpha.8"
33
+ "@lwrjs/diagnostics": "0.11.0",
34
+ "@lwrjs/shared-utils": "0.11.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@lwrjs/types": "0.11.0-alpha.8"
37
+ "@lwrjs/types": "0.11.0"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=16.0.0"
41
41
  },
42
- "gitHead": "bba3cfa996e84ee702f287e7e7b6361b807434db"
42
+ "gitHead": "fbc883ea90a12672ce6f1adc2201144fda8762bd"
43
43
  }