converse-desktop/Makefile

20 lines
279 B
Makefile
Raw Permalink Normal View History

BIN ?= ./node_modules/.bin/
2022-03-29 18:06:42 +00:00
ESLINT ?= ./node_modules/.bin/eslint
clean:
npm run clean
node_modules: package.json package-lock.json
npm i
serve: node_modules
npm start
dist: node_modules
npm dist
.PHONY: eslint
eslint: node_modules
$(ESLINT) *.js
$(ESLINT) app/**/*.js