зеркало из https://github.com/nextcloud/viewer.git
56 строки
713 B
Makefile
56 строки
713 B
Makefile
# This file is licensed under the Affero General Public License version 3 or
|
|
# later. See the COPYING file.
|
|
app_name=$(notdir $(CURDIR))
|
|
|
|
all: dev-setup lint build-js-production
|
|
|
|
# Dev env management
|
|
dev-setup: clean clean-dev npm-init
|
|
|
|
npm-init:
|
|
npm ci
|
|
|
|
npm-update:
|
|
npm update
|
|
|
|
# Building
|
|
build-js:
|
|
npm run dev
|
|
|
|
build-js-production:
|
|
npm run build
|
|
|
|
watch-js:
|
|
npm run watch
|
|
|
|
# Testing
|
|
test-cypress:
|
|
./cypress/start.sh
|
|
npm run cypress:gui
|
|
./cypress/stop.sh
|
|
|
|
test-cypress-kill:
|
|
./cypress/stop.sh
|
|
|
|
# Linting
|
|
lint:
|
|
npm run lint
|
|
|
|
lint-fix:
|
|
npm run lint:fix
|
|
|
|
# Style linting
|
|
stylelint:
|
|
npm run stylelint
|
|
|
|
stylelint-fix:
|
|
npm run stylelint:fix
|
|
|
|
# Cleaning
|
|
clean:
|
|
rm -rf js/
|
|
|
|
clean-dev:
|
|
rm -rf node_modules
|
|
|