From 3bd32e6c0dc92f8c35c511b49e0c437750bf3410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Sun, 8 Oct 2017 11:51:04 +0200 Subject: [PATCH] Update appstore building excludes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .gitignore | 5 ++++- Makefile | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b7b3607d7..61bb0314a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,10 @@ js/node_modules/* js/vendor/ -build/ js/public/ +js/package-lock.json +build/ css/style.css tests/integration/vendor/ tests/integration/composer.lock +vendor/ +*.lock diff --git a/Makefile b/Makefile index 564ed8ef8..c45aec1bb 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,7 @@ appstore: clean-build build --exclude="../$(app_name)/js/tests" \ --exclude="../$(app_name)/js/test" \ --exclude="../$(app_name)/js/*.log" \ + --exclude="../$(app_name)/js/package-lock.json" \ --exclude="../$(app_name)/js/package.json" \ --exclude="../$(app_name)/js/bower.json" \ --exclude="../$(app_name)/js/karma.*" \ @@ -60,7 +61,9 @@ appstore: clean-build build --exclude="../$(app_name)/karma.*" \ --exclude="../$(app_name)/protractor\.*" \ --exclude="../$(app_name)/.*" \ + --exclude="../$(app_name)/*.lock" \ --exclude="../$(app_name)/js/.*" \ + --exclude="../$(app_name)/vendor" \ --exclude-vcs \ ../$(app_name)