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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-10-18 14:01:50 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-18 14:14:11 +0300
commitb559bcc479ef7bb0fd101d1fb0b056366b7dce77 (patch)
treebe3101ff95298b9a1257a1aad7228eff9fea53c9 /Makefile
parent5eb8df28a014428b598a722d6a265e9d6d1fe503 (diff)
Remove vue/ because it's empty
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 3 insertions, 20 deletions
diff --git a/Makefile b/Makefile
index 9b087aeb2..f6577547e 100644
--- a/Makefile
+++ b/Makefile
@@ -21,48 +21,31 @@ release: appstore create-tag
build-js:
npm run dev
- cd vue/ && npm run dev
build-js-production:
npm run build
- cd vue/ && npm run build
watch-js:
npm run watch
- cd vue/ && npm run watch
lint:
npm run lint
- cd vue/ && npm run lint
lint-fix:
npm run lint:fix
- cd vue/ && npm run lint:fix
-npm-init: npm-init-root npm-init-vue
-
-npm-init-root:
+npm-init:
npm install
-npm-init-vue:
- cd vue/ && npm install
-
npm-update:
npm update
- cd vue/ && npm update
clean:
- rm -f js/admin/*.js
- rm -f js/admin/*.js.map
- rm -f js/collections.js
- rm -f js/collections.js.map
- rm -f js/collectionsintegration.js
- rm -f js/collectionsintegration.js.map
+ rm -f js/*
rm -rf $(build_dir)
clean-dev: clean
rm -rf node_modules
- cd vue/ && rm -rf node_modules
compile-handlebars-templates:
bash compile-handlebars-templates.sh
@@ -114,11 +97,11 @@ appstore:
--exclude=README.md \
--exclude=run-*lint.sh \
--exclude=.scrutinizer.yml \
+ --exclude=src \
--exclude=.stylelintrc \
--exclude=tests \
--exclude=.travis.yml \
--exclude=.tx \
- --exclude=vue \
$(project_dir)/ $(sign_dir)/$(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing app files…"; \