mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
24 lines
406 B
Makefile
24 lines
406 B
Makefile
|
|
REPORTER = dot
|
|
|
|
build: components lib
|
|
@component build --standalone eio
|
|
@mv build/build.js build.js
|
|
@rm -rf build
|
|
@./node_modules/.bin/uglifyjs < build.js > socket.io-client.js
|
|
@rm -f build.js
|
|
@echo "… done"
|
|
|
|
components: component.json
|
|
@component install --dev
|
|
|
|
clean:
|
|
rm -fr components build build.js
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--reporter $(REPORTER) \
|
|
--bail
|
|
|
|
.PHONY: test clean
|