From 05b5ca4ad6a643d9050626b4b0d7955cc1e5e80f Mon Sep 17 00:00:00 2001 From: Ivan Gagarinov Date: Thu, 4 Jul 2024 17:36:04 +0500 Subject: [PATCH] fix --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 3363f04..de69b92 100644 --- a/src/index.js +++ b/src/index.js @@ -249,7 +249,7 @@ const writeIgnoreErrorsFile = (errors, ignoreFilePath) => { const formatedErrors = formatErrors(errors); const result = formatedErrors.join(errorDelimeter); - fs.appendFile(`${ignoreFilePath}${errorDelimeter}`, result, 'utf-8'); + fs.appendFileSync(`${ignoreFilePath}${errorDelimeter}`, result, 'utf-8'); }; export {