https://github.com/binaryjs/binaryjs
Raw File
Tip revision: 8c920024c4f66b7a0261b15cfac63ebca1accf0c authored by ericz on 09 August 2012, 18:10:58 UTC
0.1.3 fix arraybuffer client.send bug issue #7
Tip revision: 8c92002
Makefile
default: compress

compress:
	@node bin/build.js;
  
test:
	@mocha \
		-t 2000 \
		$(TESTFLAGS) \
		$(TESTS)
    
.PHONY: test
back to top