Makefile 248 B

12345678910111213141516
  1. SHELL = /bin/bash
  2. .PHONY: build
  3. build: node_modules
  4. npm run build
  5. .PHONY: watch
  6. watch: node_modules
  7. npm run watch
  8. .PHONY: test
  9. test: node_modules
  10. docker-compose run --rm -e BASE_URL=http://webdav test npm run test
  11. node_modules:
  12. npm install