Skip to content
This repository has been archived by the owner on Apr 18, 2019. It is now read-only.

Commit

Permalink
module.exports not module.export
Browse files Browse the repository at this point in the history
  • Loading branch information
carynbear committed Jul 15, 2016
1 parent 2e6529d commit c326607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ All files outside of `template_src` are used to define parameters about the temp
```javascript
var path = require('path');

module.export = {
module.exports = {
dirname : path.join(__dirname, 'template_src')
};
```
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var path = require('path');

module.export = {
module.exports = {
dirname : path.join(__dirname, 'template_src')
};

0 comments on commit c326607

Please sign in to comment.