Sha256: 8fa9023ed77ff0e58650f218d77c2b08208d13355d8c126805c10087b434e0bb

Contents?: true

Size: 1.49 KB

Versions: 9

Compression:

Stored size: 1.49 KB

Contents

#
# Run all tests
#
test: 
	node test/less-test.js

#
# Run benchmark
#
benchmark:
	node benchmark/less-benchmark.js

#
# Build less.js
#
SRC = lib/less
HEADER = build/header.js
VERSION = `cat package.json | grep version \
														| grep -o '[0-9]\.[0-9]\.[0-9]\+'`
DIST = dist/less-${VERSION}.js
RHINO = dist/less-rhino-${VERSION}.js
DIST_MIN = dist/less-${VERSION}.min.js

less:
	@@mkdir -p dist
	@@touch ${DIST}
	@@cat ${HEADER} | sed s/@VERSION/${VERSION}/ > ${DIST}
	@@echo "(function (window, undefined) {" >> ${DIST}
	@@cat build/require.js\
	      build/amd.js\
	      build/ecma-5.js\
	      ${SRC}/parser.js\
	      ${SRC}/functions.js\
	      ${SRC}/colors.js\
	      ${SRC}/tree/*.js\
	      ${SRC}/tree.js\
	      ${SRC}/browser.js >> ${DIST}
	@@echo "})(window);" >> ${DIST}
	@@echo ${DIST} built.

rhino:
	@@mkdir -p dist
	@@touch ${RHINO}
	@@cat build/require-rhino.js\
	      build/ecma-5.js\
	      ${SRC}/parser.js\
	      ${SRC}/functions.js\
	      ${SRC}/tree/*.js\
	      ${SRC}/tree.js\
	      ${SRC}/rhino.js > ${RHINO}
	@@echo ${RHINO} built.

min: less
	@@echo minifying...
	@@uglifyjs ${DIST} > ${DIST_MIN}
	@@echo ${DIST_MIN} built.

server: less
	cp dist/less-${VERSION}.js test/html/
	cd test/html && python -m SimpleHTTPServer

clean:
	git rm dist/*

dist: clean min
	git add dist/*
	git commit -a -m "(dist) build ${VERSION}"
	git archive master --prefix=less/ -o less-${VERSION}.tar.gz
	npm publish less-${VERSION}.tar.gz

stable:
	npm tag less ${VERSION} stable


.PHONY: test benchmark

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
less-2.3.0 lib/less/js/Makefile
less-2.2.2 lib/less/js/Makefile
less-2.2.1 lib/less/js/Makefile
less-2.2.0 lib/less/js/Makefile
less-2.1.0 lib/less/js/Makefile
less-2.0.12 lib/less/js/Makefile
less-2.0.11 lib/less/js/Makefile
less-2.0.10 lib/less/js/Makefile
less-2.0.9 lib/less/js/Makefile