From bd85f7be081e04c215a2fee1a6d3037fd89f1426 Mon Sep 17 00:00:00 2001 From: will Farrell Date: Fri, 1 Jan 2021 13:05:41 -0700 Subject: [PATCH] ci: only publish required files See https://docs.npmjs.com/cli/v6/configuring-npm/package-json#files for details --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index b8fde03..7243878 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,11 @@ "version": "2.0.0", "description": "Tiny language and engine for selecting specific parts of a JS object, hiding the rest.", "main": "lib/index", + "files":[ + "bin", + "build", + "lib" + ], "scripts": { "test": "npm run lint && mocha", "test:all": "nve --parallel 14,16,18 mocha",