From 214eeb32848828bccf89eb5c0c28ec6d78f44706 Mon Sep 17 00:00:00 2001 From: andrada-nyirestyan Date: Fri, 27 Sep 2024 10:50:58 +0300 Subject: [PATCH 1/2] docs: add supported node version to README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index f7a5ef74..8e54d747 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,11 @@ The logs can be explored using [Bunyan CLI](http://trentm.com/node-bunyan/bunyan # FAQ
+What is the minimum version of Node that the tool supports? +
+

Please check the .nvmrc file for the supported version of Node.

+
+
Error: ENFILE: file table overflow, open or Error: EMFILE, too many open files

If you see these errors then you may need to bump ulimit to allow more open file operations. In order to keep the operations more performant tool logs as soon as it is convenient rather than wait until very end of a loop and log a huge data structure. This means depending on number of concurrent imports set the tool may exceed the system default ulimit.

From f7f55aa1c922d4114e1dc6e3890420785faf4dad Mon Sep 17 00:00:00 2001 From: andrada-nyirestyan Date: Mon, 30 Sep 2024 11:23:38 +0300 Subject: [PATCH 2/2] fix: manually pin dev dep --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0ea0f39e..7e6fbac3 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,7 @@ "@types/lodash": "4.17.5", "@types/micromatch": "4.0.6", "@types/needle": "2.0.4", - "@types/node": "^20.11.1", + "@types/node": "20.11.1", "@types/parse-link-header": "1.0.0", "@types/split": "1.0.0", "@typescript-eslint/eslint-plugin": "4.28.1",