From 28a86d90c44ecccebd1bb459a3cd15438625cb51 Mon Sep 17 00:00:00 2001 From: Bryan Wain Date: Thu, 22 Mar 2018 13:47:45 -0500 Subject: [PATCH] Fix files included with npm (#413) the files pointed to by main and module are not included in the npm installation --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b78d123..f7499d5 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,9 @@ "main": "dist/FileSaver.js", "module": "src/FileSaver.js", "files": [ - "dist/FileSaver.min.js" + "dist/FileSaver.js", + "dist/FileSaver.min.js", + "src/FileSaver.js" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 0",