Skip to content

Commit b1243c3

Browse files
author
Ibon Tolosana
committed
Merge pull request #5 from hyperandroid/Refactor/Fix
module exports.
2 parents 82fb952 + d884572 commit b1243c3

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

automata.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* requireJS available ???
1515
*/
16-
var module = {};
16+
root.module = {};
1717

1818

1919
/**
@@ -1741,6 +1741,6 @@
17411741

17421742
}
17431743

1744-
return _export;
1744+
exports = module.exports = _export;
17451745

17461746
})( typeof window!=='undefined' ? window : global );

changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
07-02-2015 *1.1.1*
2+
------------------
3+
4+
* Module exports for node.
5+
16
07-02-2015 *1.1.0*
27
------------------
38

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automata",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"main": "automata",
55
"keywords": [
66
"DFA",

0 commit comments

Comments
 (0)