From 547bc7614725ca5943c8f727e15e737df47f3591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Pacheco?= Date: Mon, 24 May 2021 17:09:38 -0700 Subject: [PATCH] Fixes #417: Remove extra files in npm package Removing test and config files in npm package. Left plugin files though I am wondering if we need these. --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 442f5a47..ea478f8a 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,11 @@ "directories": { "test": "tests" }, + "files": [ + "plugins/**/*.js", + "!plugins/**/tests", + "mousetrap*.js" + ], "scripts": { "test": "mocha --reporter=nyan tests/test.mousetrap.js" },