From 7602c7a5d35ac26d9e81480765d36420fd926c48 Mon Sep 17 00:00:00 2001 From: Patrick Pan Date: Wed, 5 May 2021 00:50:31 +0100 Subject: [PATCH] Fix async package at 1.5.2 To avoid breaking change to `async.whilst`. In 1.5.2 and earlier, the first function of `async.whilst` returns `true` while the second function is to be called, but in later version of `async` the function itself takes a callback as argument and calls it to determine whether to continue to the second function. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c04cc5e..93177c6 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ } ], "dependencies": { - "async": "*" + "async": "1.5.2" }, "devDependencies": { "optimist": "*"