Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « columnify « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a67c57a3b1e0803c53cb2bab9f7ba7c2e0e522c (plain)
1
2
3
4
5
6
7
8
9

all: columnify.js

prepublish: all

columnify.js: index.js package.json
	babel index.js > columnify.js

.PHONY: all prepublish