Skip to content

Commit

Permalink
Merge pull request #414 from vgoma/export-default-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigredgeek committed Jan 20, 2017
2 parents 1c163a4 + 78ae6c9 commit 705a9fe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
2.6.1 / 2017-01-16
==================

* Fix: Module's `export default` syntax fix for IE8 `Expected identifier` error

2.6.0 / 2016-12-28
==================
Expand Down
2 changes: 1 addition & 1 deletion component.json
Expand Up @@ -2,7 +2,7 @@
"name": "debug",
"repo": "visionmedia/debug",
"description": "small debugging utility",
"version": "2.6.0",
"version": "2.6.1",
"keywords": [
"debug",
"log",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "debug",
"version": "2.6.0",
"version": "2.6.1",
"repository": {
"type": "git",
"url": "git://github.com/visionmedia/debug.git"
Expand Down
2 changes: 1 addition & 1 deletion src/debug.js
Expand Up @@ -6,7 +6,7 @@
* Expose `debug()` as the module.
*/

exports = module.exports = createDebug.debug = createDebug.default = createDebug;
exports = module.exports = createDebug.debug = createDebug['default'] = createDebug;
exports.coerce = coerce;
exports.disable = disable;
exports.enable = enable;
Expand Down

0 comments on commit 705a9fe

Please sign in to comment.