Makefile 430 B

123456789101112131415161718192021222324
  1. SHELL := /usr/bin/env bash
  2. ghpages_repo := "transloadit/uppy"
  3. ghpages_branch := "gh-pages"
  4. ghpages_url := "git@github.com:$(ghpages_repo).git"
  5. .PHONY: web-install
  6. web-install:
  7. npm run website:install
  8. .PHONY: web-build
  9. web-build:
  10. npm run website:build
  11. .PHONY: web-preview
  12. web-preview:
  13. npm run website:preview
  14. .PHONY: web-deploy
  15. web-deploy:
  16. npm run website:deploy
  17. .PHONY: watch
  18. watch:
  19. npm run watch:examples