mirror of
https://github.com/debug-js/debug.git
synced 2026-01-18 16:12:38 +00:00
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# get Makefile directory name: http://stackoverflow.com/a/5982798/376773
|
|
THIS_MAKEFILE_PATH:=$(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
|
|
THIS_DIR:=$(shell cd $(dir $(THIS_MAKEFILE_PATH));pwd)
|
|
|
|
# BIN directory
|
|
BIN := $(THIS_DIR)/node_modules/.bin
|
|
|
|
# Path
|
|
PATH := node_modules/.bin:$(PATH)
|
|
SHELL := /bin/bash
|
|
|
|
# applications
|
|
NODE ?= $(shell which node)
|
|
YARN ?= $(shell which yarn)
|
|
PKG ?= $(if $(YARN),$(YARN),$(NODE) $(shell which npm))
|
|
BROWSERIFY ?= $(NODE) $(BIN)/browserify
|
|
|
|
all: lint test
|
|
|
|
browser: dist/debug.js dist/test.js
|
|
|
|
dist/debug.js: src/*.js
|
|
@mkdir -p dist
|
|
@$(BROWSERIFY) --standalone debug . > $@.es6.js
|
|
@babel $@.es6.js > $@
|
|
@rm $@.es6.js
|
|
|
|
dist/test.js: test.js
|
|
@mkdir -p dist
|
|
@cp $< $@.es6.js
|
|
@babel $@.es6.js > $@
|
|
@rm $@.es6.js
|
|
|
|
lint:
|
|
@xo
|
|
|
|
test-node:
|
|
@istanbul cover node_modules/mocha/bin/_mocha -- test.js
|
|
@cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
|
|
|
|
test-browser:
|
|
@$(MAKE) browser
|
|
@karma start --single-run
|
|
|
|
test: test-node test-browser
|
|
|
|
clean:
|
|
rm -rf dist coverage
|
|
|
|
.PHONY: all browser install clean lint test test-node test-browser
|