Makefile 300 B

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