Makefile 128 B

123456789
  1. all: columnify.js
  2. prepublish: all
  3. columnify.js: index.js package.json
  4. babel index.js > columnify.js
  5. .PHONY: all prepublish