Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_automatedtagging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2021-01-25 22:13:30 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2021-01-25 22:13:30 +0300
commit5297ae48b7709e2c49f40b5b211f4cca58f426a2 (patch)
treed5506011f3745a48cf2942524f8e4bda5aa34dbf
parent60313b851f1de8cfe02ff52cbbad46e594e2faae (diff)
update Makefilev1.11.0
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index abf3772..59a181e 100644
--- a/Makefile
+++ b/Makefile
@@ -25,12 +25,14 @@ clean:
rm -rf $(build_dir)
rm -rf node_modules
rm -rf js/*
+ rm -rf vendor/
.PHONY: build
build:
mkdir -p js/
npm ci
npm run build
+ #composer install --no-dev #commented, because there are no no-dev deps
.PHONY: appstore
appstore: clean build
@@ -38,10 +40,12 @@ appstore: clean build
rsync -a \
--exclude=/.babelrc.js \
--exclude=/build \
+ --exclude=/composer.* \
--exclude=/docs \
--exclude=/.eslintrc.js \
--exclude=/package-lock.json \
--exclude=/package.json \
+ --exclude=/.php_cs.* \
--exclude=/node_modules \
--exclude=/translationfiles \
--exclude=/.tx \