@jsenv/core 39.3.9 → 39.3.10

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.
@@ -17111,7 +17111,10 @@ const jsenvPluginInlineContentFetcher = () => {
17111
17111
  let originalContent = urlInfo.originalContent;
17112
17112
  for (const reference of urlInfo.referenceFromOthersSet) {
17113
17113
  if (reference.isInline) {
17114
- if (urlInfo.originalContent === undefined) {
17114
+ if (
17115
+ urlInfo.originalContent === undefined &&
17116
+ originalContent === undefined
17117
+ ) {
17115
17118
  originalContent = reference.content;
17116
17119
  }
17117
17120
  lastInlineReference = reference;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "39.3.9",
3
+ "version": "39.3.10",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -48,7 +48,10 @@ const jsenvPluginInlineContentFetcher = () => {
48
48
  let originalContent = urlInfo.originalContent;
49
49
  for (const reference of urlInfo.referenceFromOthersSet) {
50
50
  if (reference.isInline) {
51
- if (urlInfo.originalContent === undefined) {
51
+ if (
52
+ urlInfo.originalContent === undefined &&
53
+ originalContent === undefined
54
+ ) {
52
55
  originalContent = reference.content;
53
56
  }
54
57
  lastInlineReference = reference;