@absolutejs/absolute 0.19.0-beta.187 → 0.19.0-beta.188
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/src/index.js
CHANGED
|
@@ -997,10 +997,11 @@ var DEFAULT_DEVICE_SIZES, DEFAULT_IMAGE_SIZES, DEFAULT_QUALITY = 75, OPTIMIZATIO
|
|
|
997
997
|
const mod = await import(name);
|
|
998
998
|
sharpModule = mod.default ?? mod;
|
|
999
999
|
return sharpModule;
|
|
1000
|
-
} catch {
|
|
1000
|
+
} catch (err) {
|
|
1001
1001
|
if (sharpWarned)
|
|
1002
1002
|
return null;
|
|
1003
1003
|
sharpWarned = true;
|
|
1004
|
+
console.warn("[image] sharp load error:", err);
|
|
1004
1005
|
console.warn("[image] sharp not installed \u2014 serving unoptimized images. Install with: bun add sharp");
|
|
1005
1006
|
return null;
|
|
1006
1007
|
}
|
|
@@ -207109,5 +207110,5 @@ export {
|
|
|
207109
207110
|
ANGULAR_INIT_TIMEOUT_MS
|
|
207110
207111
|
};
|
|
207111
207112
|
|
|
207112
|
-
//# debugId=
|
|
207113
|
+
//# debugId=86178FC7A595684C64756E2164756E21
|
|
207113
207114
|
//# sourceMappingURL=index.js.map
|