@jsenv/core 37.0.2 → 37.0.3

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.
@@ -20559,6 +20559,9 @@ ${ANSI.color(buildUrl, ANSI.MAGENTA)}
20559
20559
  });
20560
20560
  });
20561
20561
  for (const referenceToOther of buildUrlInfo.referenceToOthersSet) {
20562
+ if (referenceToOther.isWeak) {
20563
+ continue;
20564
+ }
20562
20565
  const referencedUrlInfo = referenceToOther.urlInfo;
20563
20566
  if (referencedUrlInfo.data.generatedToShareCode) {
20564
20567
  hintsToInject[referencedUrlInfo.url] = node;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "37.0.2",
3
+ "version": "37.0.3",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -1144,6 +1144,9 @@ ${ANSI.color(buildUrl, ANSI.MAGENTA)}
1144
1144
  });
1145
1145
  });
1146
1146
  for (const referenceToOther of buildUrlInfo.referenceToOthersSet) {
1147
+ if (referenceToOther.isWeak) {
1148
+ continue;
1149
+ }
1147
1150
  const referencedUrlInfo = referenceToOther.urlInfo;
1148
1151
  if (referencedUrlInfo.data.generatedToShareCode) {
1149
1152
  hintsToInject[referencedUrlInfo.url] = node;