@jsenv/core 41.5.26 → 41.5.27
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/build/build.js
CHANGED
|
@@ -11555,6 +11555,11 @@ const createBuildSpecifierManager = ({
|
|
|
11555
11555
|
// when versioning is dynamic no need to take into account
|
|
11556
11556
|
continue;
|
|
11557
11557
|
}
|
|
11558
|
+
if (referenceVersioningInfo.type === "not_versioned") {
|
|
11559
|
+
// the specifier is emitted bare (entry point, webmanifest, ...):
|
|
11560
|
+
// the referencing file's bytes cannot change with that file's content
|
|
11561
|
+
continue;
|
|
11562
|
+
}
|
|
11558
11563
|
placeholderInfluencingVersionSet.add(containedPlaceholder);
|
|
11559
11564
|
const referencedUrlInfo = reference.urlInfo;
|
|
11560
11565
|
visitContainedPlaceholders(referencedUrlInfo);
|
package/package.json
CHANGED
|
@@ -626,6 +626,11 @@ export const createBuildSpecifierManager = ({
|
|
|
626
626
|
// when versioning is dynamic no need to take into account
|
|
627
627
|
continue;
|
|
628
628
|
}
|
|
629
|
+
if (referenceVersioningInfo.type === "not_versioned") {
|
|
630
|
+
// the specifier is emitted bare (entry point, webmanifest, ...):
|
|
631
|
+
// the referencing file's bytes cannot change with that file's content
|
|
632
|
+
continue;
|
|
633
|
+
}
|
|
629
634
|
placeholderInfluencingVersionSet.add(containedPlaceholder);
|
|
630
635
|
const referencedUrlInfo = reference.urlInfo;
|
|
631
636
|
visitContainedPlaceholders(referencedUrlInfo);
|