@vercel/og 0.6.5 → 0.6.7

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.
@@ -18509,7 +18509,6 @@ var Resvg2 = class extends Resvg {
18509
18509
  import { Readable } from "stream";
18510
18510
  import fs from "fs";
18511
18511
  import { fileURLToPath } from "url";
18512
- import { join } from "path";
18513
18512
 
18514
18513
  // src/emoji/index.ts
18515
18514
  var U200D = String.fromCharCode(8205);
@@ -18926,9 +18925,9 @@ function assertValue(v2, errorMessage) {
18926
18925
 
18927
18926
  // src/index.node.ts
18928
18927
  var satori = El.default || El;
18929
- var fontData = fs.readFileSync(fileURLToPath(join(import.meta.url, "../noto-sans-v27-latin-regular.ttf")));
18930
- var yoga_wasm = fs.readFileSync(fileURLToPath(join(import.meta.url, "../yoga.wasm")));
18931
- var resvg_wasm = fs.readFileSync(fileURLToPath(join(import.meta.url, "../resvg.wasm")));
18928
+ var fontData = fs.readFileSync(fileURLToPath(new URL("./noto-sans-v27-latin-regular.ttf", import.meta.url)));
18929
+ var yoga_wasm = fs.readFileSync(fileURLToPath(new URL("./yoga.wasm", import.meta.url)));
18930
+ var resvg_wasm = fs.readFileSync(fileURLToPath(new URL("./resvg.wasm", import.meta.url)));
18932
18931
  var initializedResvg = initWasm(resvg_wasm);
18933
18932
  var initializedYoga = initYoga(yoga_wasm).then((yoga2) => Ll(yoga2));
18934
18933
  var ImageResponse = class extends Response {