summaryrefslogtreecommitdiff
path: root/node_modules/jju/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/jju/Makefile')
-rw-r--r--node_modules/jju/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/node_modules/jju/Makefile b/node_modules/jju/Makefile
deleted file mode 100644
index 2a663cf..0000000
--- a/node_modules/jju/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-PATH := node_modules/.bin:$(PATH)
-
-all: package.json install
-
-install: package.json
- yarn
-
-test:
- mocha test/*.js
-
-lint:
- eslint -c ./.eslint.yaml ./lib
-
-clean:
- rm package.json yarn.lock
-
-package.json: package.yaml
- js-yaml package.yaml > package.json
-
-.PHONY: clean all install lint test