Sha256: e679f5afacdb2fd20ba87fd5ffd16960752459b10b3b4a6f6082348d9a0e95ac
Contents?: true
Size: 285 Bytes
Versions: 44
Compression:
Stored size: 285 Bytes
Contents
# Makefile for generating minified files .PHONY: all # we cheat and process all .js files instead of an exhaustive list all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) %.min.js: %.js yui-compressor $< -o $@ test: ./node_modules/.bin/jshint *jquery.flot.js
Version data entries
44 entries across 44 versions & 4 rubygems