From 3ed715e19a4b02935d34189c408d0155a3896c84 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 22 Aug 2019 14:14:17 -0700 Subject: [PATCH] For configs, switch back to exact versions I realized that without exact versions, we don't have to release a new version of standard when we relax a rule in one of the configs, like I just did for https://github.com/standard/standard/issues/1382 I would rather be forced to release a new version when I do this, so we have to add a changelog entry and document the change. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0cd5f89ae..110dd87a0 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ }, "dependencies": { "eslint": "~6.1.0", - "eslint-config-standard": "~14.0.0", - "eslint-config-standard-jsx": "~8.0.0", + "eslint-config-standard": "14.0.0", + "eslint-config-standard-jsx": "8.0.1", "eslint-plugin-import": "~2.18.0", "eslint-plugin-node": "~9.1.0", "eslint-plugin-promise": "~4.2.1",