[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/clojure-ts-mode 8f17736e67 2/6: Add Makefile
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/clojure-ts-mode 8f17736e67 2/6: Add Makefile |
Date: |
Tue, 13 Feb 2024 18:59:19 -0500 (EST) |
branch: elpa/clojure-ts-mode
commit 8f17736e678581ea6c12fab0dc43af8a698a574c
Author: p4v4n <pavan.mantha99@gmail.com>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>
Add Makefile
---
Makefile | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000..3e6135387e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+.PHONY: clean compile lint test all
+.DEFAULT_GOAL := all
+
+clean:
+ eldev clean
+
+lint: clean
+ eldev lint -c
+
+# Checks for byte-compilation warnings.
+compile: clean
+ eldev -dtT compile --warnings-as-errors
+
+test: clean
+ eldev -dtT -p test
+
+all: clean compile lint test
- [nongnu] elpa/clojure-ts-mode updated (569c464150 -> 9bbae695ec), ELPA Syncer, 2024/02/13
- [nongnu] elpa/clojure-ts-mode 4caa7bb244 3/6: Add first unit test with buttercup, ELPA Syncer, 2024/02/13
- [nongnu] elpa/clojure-ts-mode 8f17736e67 2/6: Add Makefile,
ELPA Syncer <=
- [nongnu] elpa/clojure-ts-mode 9bbae695ec 6/6: Ignore check-declare validator for linting, ELPA Syncer, 2024/02/13
- [nongnu] elpa/clojure-ts-mode 59e003ad22 4/6: Setup github actions for linting and tests, ELPA Syncer, 2024/02/13
- [nongnu] elpa/clojure-ts-mode 33eda84822 1/6: Setup Eldev, ELPA Syncer, 2024/02/13
- [nongnu] elpa/clojure-ts-mode 4ec0c61d64 5/6: Fix indentation warnings from eldev, ELPA Syncer, 2024/02/13