diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,10 +1,17 @@ ## SPDX-FileCopyrightText: 2021 M. Shulhan <ms@kilabit.info> ## SPDX-License-Identifier: GPL-3.0-or-later -.PHONY: all watch +.PHONY: all +all: build lint -all: +.PHONY: lint +lint: + npx eslint --fix . + +.PHONY: build +build: tsc --outDir . +.PHONY: watch watch: tsc --outDir . --watch |
