Skip to content

Commit df7f037

Browse files
authored
chore: fix linting error (#303)
The two PRs overlapped
1 parent a502b4b commit df7f037

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/util.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,7 @@ export type ZipOptions = {
4040
* @param opts Options with which to invoke the zip.
4141
* @returns filepath of the created zip file.
4242
*/
43-
export function zipDir(
44-
dirPath: string,
45-
outputPath: string,
46-
opts?: ZipOptions,
47-
): Promise<string> {
43+
export function zipDir(dirPath: string, outputPath: string, opts?: ZipOptions): Promise<string> {
4844
// Check dirpath
4945
if (!fs.existsSync(dirPath)) {
5046
throw new Error(`Unable to find ${dirPath}`);

0 commit comments

Comments
 (0)