From 515c06904f209c3a811e92b486cd3ac57f6037f1 Mon Sep 17 00:00:00 2001 From: madhusudhand Date: Tue, 19 Mar 2019 17:59:54 +0530 Subject: [PATCH 1/4] #726 adding file list to package.json --- package.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/package.json b/package.json index ce12a797..07bb7fcd 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,17 @@ "lint": "eslint .", "test": "git clean -Xfd test/fixtures && jest --maxWorkers 1" }, + "files": [ + "bin/", + "build/", + "commands/", + "entries/", + "lib/", + "plugins/", + "get-compilation-metadata.js", + "README.md", + "LICENSE" + ], "dependencies": { "@babel/core": "^7.1.6", "@babel/plugin-syntax-dynamic-import": "7.2.0", From cc6fdfba5238dee64455fde0a2acbd86760af094 Mon Sep 17 00:00:00 2001 From: madhusudhand Date: Wed, 20 Mar 2019 15:58:20 +0530 Subject: [PATCH 2/4] #726 add rule to ignore the test directories --- package.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 07bb7fcd..4cb6fd7a 100644 --- a/package.json +++ b/package.json @@ -11,15 +11,16 @@ "test": "git clean -Xfd test/fixtures && jest --maxWorkers 1" }, "files": [ + "README.md", + "LICENSE", + "get-compilation-metadata.js", "bin/", "build/", "commands/", "entries/", "lib/", "plugins/", - "get-compilation-metadata.js", - "README.md", - "LICENSE" + "!**/test/" ], "dependencies": { "@babel/core": "^7.1.6", From 3d8faa7bca2fb121dfd713177d854f6ef5d50076 Mon Sep 17 00:00:00 2001 From: Ryan Tsao Date: Thu, 28 Mar 2019 14:15:07 +0530 Subject: [PATCH 3/4] Remove README.md entry from package.json Co-Authored-By: madhusudhand --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 4cb6fd7a..15e32e74 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,6 @@ "test": "git clean -Xfd test/fixtures && jest --maxWorkers 1" }, "files": [ - "README.md", "LICENSE", "get-compilation-metadata.js", "bin/", From 3c68cd345146106809e32b6057c97b52c862e5f1 Mon Sep 17 00:00:00 2001 From: Ryan Tsao Date: Thu, 28 Mar 2019 14:15:23 +0530 Subject: [PATCH 4/4] Remove LICENSE entry from package.json Co-Authored-By: madhusudhand --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 15e32e74..7ae01e1d 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,6 @@ "test": "git clean -Xfd test/fixtures && jest --maxWorkers 1" }, "files": [ - "LICENSE", "get-compilation-metadata.js", "bin/", "build/",