Skip to content

Commit 705a9fe

Browse files
Merge pull request #414 from vgoma/export-default-fix
2 parents 1c163a4 + 78ae6c9 commit 705a9fe

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2.6.1 / 2017-01-16
2+
==================
3+
4+
* Fix: Module's `export default` syntax fix for IE8 `Expected identifier` error
15

26
2.6.0 / 2016-12-28
37
==================

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "debug",
33
"repo": "visionmedia/debug",
44
"description": "small debugging utility",
5-
"version": "2.6.0",
5+
"version": "2.6.1",
66
"keywords": [
77
"debug",
88
"log",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "debug",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/visionmedia/debug.git"

src/debug.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Expose `debug()` as the module.
77
*/
88

9-
exports = module.exports = createDebug.debug = createDebug.default = createDebug;
9+
exports = module.exports = createDebug.debug = createDebug['default'] = createDebug;
1010
exports.coerce = coerce;
1111
exports.disable = disable;
1212
exports.enable = enable;

0 commit comments

Comments
 (0)