From 124c777ae2ed0a7297c98c6c36ea1af6d7c47471 Mon Sep 17 00:00:00 2001 From: aleclarson Date: Wed, 27 Jun 2018 10:49:34 -0400 Subject: [PATCH 1/2] rename to `returnFalse` --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 8424240..ac4ff49 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,3 @@ -module.exports = function aJavaScriptPortOfTheUnixUtilityFalseReturnsTheBooleanValueFalse () { +module.exports = function returnFalse() { return false; }; From cdfafe2455ff340a2632e69b1060f99e0bfbdd8a Mon Sep 17 00:00:00 2001 From: aleclarson Date: Wed, 27 Jun 2018 10:50:31 -0400 Subject: [PATCH 2/2] only publish critical files --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 7acbd0d..e47b358 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "version": "0.0.4", "description": "A JavaScript port of the Unix utility 'false'. Returns the Boolean value `false`", "main": "index.js", + "files": [ + "index.js" + ], "scripts": { "test": "jake test" },