Makefile 105 B

12345678910
  1. .PHONY: dist build
  2. build: install
  3. @npm run build
  4. dev: install
  5. @npm run serve
  6. install:
  7. @npm install