From eda5a69156436d5962300a1081fe7df1b73014c4 Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Tue, 28 Feb 2023 17:25:40 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Add=20`async`=20to=20`devDependenci?= =?UTF-8?q?es`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We incorrectly [removed `async`][1] from our dependencies, but we still import this library for our tests. This change puts it back in our `devDependencies` [1]: https://github.com/share/sharedb-mongo/pull/140/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L7 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 9322014..4f2bd59 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "sharedb": "^1.9.1 || ^2.0.0 || ^3.0.0" }, "devDependencies": { + "async": "^3.2.4", "chai": "^4.2.0", "coveralls": "^3.0.7", "eslint": "^5.16.0",