From 3098c5874ea1bd22493710edc577049dfd0cae22 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Thu, 1 Jul 2021 18:27:16 -0600 Subject: [PATCH] Update: Add ESLint 6+ peer dependency to generated plugin template (#84) ESLint 6 released 2019-06 ESLint 7 released 2020-05 ESLint 8 coming soon --- plugin/templates/_package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugin/templates/_package.json b/plugin/templates/_package.json index df3cc21..ded174f 100644 --- a/plugin/templates/_package.json +++ b/plugin/templates/_package.json @@ -22,5 +22,8 @@ "engines": { "node": ">=0.10.0" }, + "peerDependencies": { + "eslint": ">=6" + }, "license": "ISC" }