Skip to content

Commit

Permalink
release 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew E. Rhyne committed Feb 10, 2017
1 parent 37e14d6 commit 941653e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
2.6.1 / 2017-01-16
2.6.1 / 2017-02-10
==================

* Fix: Module's `export default` syntax fix for IE8 `Expected identifier` error
* Fix: Whitelist DEBUG_FD for values 1 and 2 only (#415, @pi0)
* Fix: IE8 "Expected identifier" error (#414, @vgoma)
* Fix: Namespaces would not disable once enabled (#409, @musikov)

2.6.0 / 2016-12-28
==================
Expand Down
22 changes: 10 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,36 +17,34 @@ BROWSERIFY ?= $(NODE) $(BIN)/browserify

.FORCE:

all: dist/debug.js

install: node_modules

node_modules: package.json
@NODE_ENV= $(PKG) install
@touch node_modules

lint: .FORCE
eslint browser.js debug.js index.js node.js

test-node: .FORCE
istanbul cover node_modules/mocha/bin/_mocha -- test/**.js

test-browser: .FORCE
mkdir -p dist

@$(BROWSERIFY) \
--standalone debug \
. > dist/debug.js

karma start --single-run
rimraf dist

test: .FORCE
concurrently \
"make test-node" \
"make test-browser"
coveralls:

coveralls:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js

.PHONY: all install clean distclean

0 comments on commit 941653e

Please sign in to comment.