2024-05-24 20:43:47 +03:00
|
|
|
# SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-06-19 14:53:28 +03:00
|
|
|
all: clean dev-setup build-js-production
|
2018-04-06 22:03:36 +03:00
|
|
|
|
2019-09-25 10:55:33 +03:00
|
|
|
# Dev env management
|
2021-02-20 22:14:48 +03:00
|
|
|
dev-setup: clean npm-init
|
2018-04-24 10:40:05 +03:00
|
|
|
|
|
|
|
npm-init:
|
2020-02-17 14:24:40 +03:00
|
|
|
npm ci
|
2018-04-06 22:03:36 +03:00
|
|
|
|
|
|
|
npm-update:
|
|
|
|
npm update
|
|
|
|
|
2019-09-25 10:55:33 +03:00
|
|
|
# Building
|
2018-04-06 22:03:36 +03:00
|
|
|
build-js:
|
|
|
|
npm run dev
|
|
|
|
|
|
|
|
build-js-production:
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
watch-js:
|
|
|
|
npm run watch
|
|
|
|
|
2019-09-25 10:55:33 +03:00
|
|
|
# Linting
|
|
|
|
lint-fix:
|
|
|
|
npm run lint:fix
|
2018-04-06 22:03:36 +03:00
|
|
|
|
2019-09-25 19:19:42 +03:00
|
|
|
lint-fix-watch:
|
|
|
|
npm run lint:fix-watch
|
|
|
|
|
2019-09-25 10:55:33 +03:00
|
|
|
# Cleaning
|
2019-06-19 14:53:28 +03:00
|
|
|
clean:
|
2021-12-02 20:57:11 +03:00
|
|
|
rm -rf dist
|
2019-09-25 10:55:33 +03:00
|
|
|
|
2019-09-03 11:13:28 +03:00
|
|
|
clean-git: clean
|
2021-12-02 20:57:11 +03:00
|
|
|
git checkout -- dist
|