summaryrefslogtreecommitdiff
path: root/node_modules/jju/Makefile
blob: 2a663cf567fd4127931d6b2ae1003038e2844c9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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