@jsenv/core 39.3.8 → 39.3.9

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.
@@ -17126,6 +17126,11 @@ const jsenvPluginInlineContentFetcher = () => {
17126
17126
  originalContent = originalUrlInfo.originalContent;
17127
17127
  lastInlineReference.content = originalUrlInfo.content;
17128
17128
  lastInlineReference.contentType = originalUrlInfo.contentType;
17129
+ return {
17130
+ originalContent: originalUrlInfo.originalContent,
17131
+ content: originalUrlInfo.content,
17132
+ contentType: originalUrlInfo.contentType,
17133
+ };
17129
17134
  }
17130
17135
  }
17131
17136
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "39.3.8",
3
+ "version": "39.3.9",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -63,6 +63,11 @@ const jsenvPluginInlineContentFetcher = () => {
63
63
  originalContent = originalUrlInfo.originalContent;
64
64
  lastInlineReference.content = originalUrlInfo.content;
65
65
  lastInlineReference.contentType = originalUrlInfo.contentType;
66
+ return {
67
+ originalContent: originalUrlInfo.originalContent,
68
+ content: originalUrlInfo.content,
69
+ contentType: originalUrlInfo.contentType,
70
+ };
66
71
  }
67
72
  }
68
73
  return {