Skip to content

Commit

Permalink
fix: add missing return statement for arm fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Dec 30, 2021
1 parent 0536242 commit 5eac2d8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/node/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export async function minifyFiles(files: string[], hasComment = false): Promise<
const minifiedJsonString = jsonminify(jsonString) as string;
await writeFile(file, minifiedJsonString);
})
return
}

const filesNum = files.length
Expand Down

0 comments on commit 5eac2d8

Please sign in to comment.