From 7edc2dc63a69a6cb7af8c8b31b0a5ce4e2416bdf Mon Sep 17 00:00:00 2001 From: Rico Huijbers Date: Mon, 3 May 2021 15:49:20 +0200 Subject: [PATCH] chore(prlint): declare missing dependency (#14497) A dependency on `make-runnable` was missing. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- tools/prlint/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/prlint/package.json b/tools/prlint/package.json index 22ddafef09426..d30230c2d9cd2 100644 --- a/tools/prlint/package.json +++ b/tools/prlint/package.json @@ -14,7 +14,8 @@ "github-api": "^3.4.0" }, "devDependencies": { - "jest": "^26.6.3" + "jest": "^26.6.3", + "make-runnable": "^1.3.8" }, "scripts": { "build": "echo success",