Makefile 257 B

123456789101112
  1. all: update
  2. install:
  3. yarn install
  4. minify: install
  5. ./node_modules/.bin/uglifyjs --mangle --source-map test.map --source-map-include-sources --prefix relative --output test.min.js test.js
  6. update: minify
  7. node launch.js
  8. .PHONY: all install minify update