From 73a6ad4bbc081665cf1e24a99f952da2398791bc Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sat, 2 Oct 2021 16:19:45 +0200 Subject: [PATCH] ci: ensure sourceId flag is cleaned up properly --- gulpfile.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 36889fb..646a035 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -93,7 +93,7 @@ const jsonToNeDB = () => try { file.contents = Buffer.from( JSON.parse(file.contents.toString()) - .map(cleanPackEntry) + .map((entry) => cleanPackEntry(entry)) .map((entry) => JSON.stringify(entry)) .join("\n") + "\n", ); @@ -131,7 +131,13 @@ const neDBToJSON = () => if (err) { callback(err); } else { - file.contents = Buffer.from(JSON.stringify(docs.map(cleanPackEntry), undefined, 4) + "\n"); + file.contents = Buffer.from( + JSON.stringify( + docs.map((entry) => cleanPackEntry(entry)), + undefined, + 4, + ) + "\n", + ); file.path = path.join( path.dirname(file.path), path.basename(file.path, path.extname(file.path)) + ".json",