We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0af495c commit 66e49e8Copy full SHA for 66e49e8
1 file changed
app/modules/gh-docs/.server/tarball.ts
@@ -1,5 +1,5 @@
1
import * as zlib from "node:zlib";
2
-import { parseTar, type TarEntry } from "@remix-run/tar-parser";
+import { parseTar } from "@remix-run/tar-parser";
3
4
type ProcessFile = ({
5
filename,
@@ -24,7 +24,7 @@ async function processFilesFromRepoTarball(
24
): Promise<void> {
25
let data = await gunzip(compressedData);
26
27
- await parseTar(data, async (entry: TarEntry) => {
+ await parseTar(data, async (entry) => {
28
// Make sure the file matches the ones we want to process
29
// In tar format, "file" represents a regular file
30
let isMatch = entry.header.type === "file" && pattern.test(entry.name);
0 commit comments