From dc0c42650dedcd0f8f1ee7abf9de14f9b8495eb0 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Mon, 3 Oct 2016 12:54:36 +0530 Subject: [PATCH 1/2] Pin down the dependencies to their exact version - And keep tldr-lint on a greater than mode --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 50c8cb3c8..8bf9640b5 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "version": "1.0.0", "description": "Simplified, community-driven man pages", "dependencies": { - "glob": "^7.0.0", - "markdownlint-cli": "^0.1.0", + "glob": "=7.0.0", + "markdownlint-cli": "=0.1.0", "tldr-lint": "^0.0.7", - "husky": "^0.11.3" + "husky": "=0.11.3" }, "scripts": { "precommit": "npm test", From 266b8da4796c2670ceb0c1b9975994d42b269e5c Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Mon, 3 Oct 2016 23:47:21 +0530 Subject: [PATCH 2/2] Removed = from dependencies as they are redundant - Also moved tldr-lint to tilde range because when its 0.0.X, caret does not allow any change even in patch version. --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 8bf9640b5..f0ab5f12a 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "version": "1.0.0", "description": "Simplified, community-driven man pages", "dependencies": { - "glob": "=7.0.0", - "markdownlint-cli": "=0.1.0", - "tldr-lint": "^0.0.7", - "husky": "=0.11.3" + "glob": "7.0.0", + "markdownlint-cli": "0.1.0", + "tldr-lint": "~0.0.7", + "husky": "0.11.3" }, "scripts": { "precommit": "npm test",