From 687444e547bc84939c9d0354cd6902736c8e0e11 Mon Sep 17 00:00:00 2001 From: Eli Kogan-Wang Date: Thu, 20 Mar 2025 16:45:34 +0100 Subject: [PATCH] Fix eslint lint error --- utils/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build.js b/utils/build.js index eb3d8f94..a7e0400c 100644 --- a/utils/build.js +++ b/utils/build.js @@ -24,7 +24,7 @@ const paths = { // calling the callback for all normal files found. const walkDir = async (basePath, cb, filter) => { const files = await fs.promises.readdir(basePath); - const paths = files.map((filename) => path.join(basePath, filename)); + const paths = files.map(filename => path.join(basePath, filename)); return Promise.all( paths.map(async (filepath) => { const stats = await fs.promises.lstat(filepath);