@jsenv/core 29.1.4 → 29.1.5

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/dist/main.js CHANGED
@@ -19843,7 +19843,7 @@ const jsenvPluginUrlResolution = ({
19843
19843
 
19844
19844
  let urlType;
19845
19845
 
19846
- if (reference.expectedType) {
19846
+ if (reference.injected) {
19847
19847
  urlType = reference.expectedType;
19848
19848
  } else {
19849
19849
  const parentUrlInfo = context.urlGraph.getUrlInfo(reference.parentUrl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "29.1.4",
3
+ "version": "29.1.5",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -102,7 +102,7 @@ export const jsenvPluginUrlResolution = ({
102
102
  return resolveUrlUsingWebResolution(reference, context)
103
103
  }
104
104
  let urlType
105
- if (reference.expectedType) {
105
+ if (reference.injected) {
106
106
  urlType = reference.expectedType
107
107
  } else {
108
108
  const parentUrlInfo = context.urlGraph.getUrlInfo(reference.parentUrl)