gtfs 4.18.4 → 4.18.6

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/index.js CHANGED
@@ -4064,7 +4064,8 @@ async function unzip(zipfilePath, exportPath) {
4064
4064
  await zip.close();
4065
4065
  } catch (error) {
4066
4066
  throw new Error(
4067
- `Failed to extract zip file: ${error instanceof Error ? error.message : "Unknown error"}`
4067
+ `Failed to extract zip file: ${error instanceof Error ? error.message : "Unknown error"}`,
4068
+ { cause: error }
4068
4069
  );
4069
4070
  }
4070
4071
  }