Skip to content

Commit 8ae766e

Browse files
eslint + clean-up
1 parent 526c059 commit 8ae766e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6102,7 +6102,7 @@ function commentForMonorepo(
61026102
* @param {raw lcov} lcov
61036103
* @param {*} options
61046104
*/
6105-
async function comment(lcov, before, options) {
6105+
function comment(lcov, before, options) {
61066106
const pbefore = before ? percentage(before) : 0;
61076107
const pafter = before ? percentage(lcov) : 0;
61086108
const pdiff = pafter - pbefore;

src/comment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function commentForMonorepo(
8080
* @param {raw lcov} lcov
8181
* @param {*} options
8282
*/
83-
export async function comment(lcov, before, options) {
83+
export function comment(lcov, before, options) {
8484
const pbefore = before ? percentage(before) : 0;
8585
const pafter = before ? percentage(lcov) : 0;
8686
const pdiff = pafter - pbefore;

0 commit comments

Comments
 (0)