Makefile 284 B

123456789101112131415161718192021
  1. SHELL := /usr/bin/env bash
  2. .PHONY: web-install
  3. web-install:
  4. npm run web:install
  5. .PHONY: web-build
  6. web-build:
  7. npm run web:build
  8. .PHONY: web-preview
  9. web-preview:
  10. npm run web:preview
  11. .PHONY: web-deploy
  12. web-deploy:
  13. npm run web:deploy
  14. .PHONY: watch
  15. watch:
  16. npm run watch:examples