diff options
| author | Shulhan <ms@kilabit.info> | 2023-10-28 23:50:35 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-10-28 23:50:35 +0700 |
| commit | 6580d7bc75fcea2f62533b8db594b23d3534ac46 (patch) | |
| tree | dacdc3cb42642a9ec7a5ea47e84bbb7fbac83049 | |
| parent | 6f6652e548529217eca2d254b39a611ef317496e (diff) | |
| download | awwan-6580d7bc75fcea2f62533b8db594b23d3534ac46.tar.xz | |
Makefile: run task "lint-www" as precondition of "install" task
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,7 +32,7 @@ build: embed go build ./cmd/awwan .PHONY: install -install: embed +install: lint-www embed go install ./cmd/awwan .PHONY: dev @@ -41,8 +41,8 @@ dev: #{{{ Task to lint the TypeScript files. -.PHONY: _www-lint -_www-lint: +.PHONY: lint-www +lint-www: cd _www && eslint --fix . #}}} |
