From acafedc9f86db07bf9a04f39eec896ee0b249d7e Mon Sep 17 00:00:00 2001 From: aleclarson Date: Wed, 27 Jun 2018 10:51:52 -0400 Subject: [PATCH 1/2] rename to `returnTrue` --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index 2e4f1c7..05c6f67 100644 --- a/index.js +++ b/index.js @@ -1,4 +1,3 @@ -module.exports = function aJavaScriptPortOfTheUnixUtilityTrueReturnsTheBooleanValueTrue () { +module.exports = function returnTrue() { return true; }; - From d37a8b1fc2d29c824cf56ab4d5fb5bd26ba0d521 Mon Sep 17 00:00:00 2001 From: aleclarson Date: Wed, 27 Jun 2018 10:55:50 -0400 Subject: [PATCH 2/2] only publish critical files --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 4ad324a..501b1bf 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,10 @@ "bin": { "true": "bin/cli.js" }, + "files": [ + "bin", + "index.js" + ], "scripts": { "test": "jake test" },