2020-11-24 14:16:53 +00:00
|
|
|
# This file is licensed under the Affero General Public License version 3 or
|
|
|
|
# later. See the COPYING file.
|
|
|
|
|
2020-10-12 15:29:36 +00:00
|
|
|
all: dev-setup lint build-js-production test
|
|
|
|
|
|
|
|
# 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:
|
|
|
|
npm run test
|
|
|
|
|
|
|
|
test-watch:
|
|
|
|
npm run test:watch
|
|
|
|
|
|
|
|
test-coverage:
|
|
|
|
npm run test:coverage
|
|
|
|
|
|
|
|
# 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 -f js/*
|
|
|
|
|
|
|
|
clean-dev:
|
|
|
|
rm -rf node_modules
|
2020-11-21 22:21:44 +00:00
|
|
|
|
|
|
|
appstore:
|
|
|
|
krankerl package
|