You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/08/26 00:10:29 UTC

[5/6] cordova-template-reference git commit: module.exports not module.export

module.exports not module.export


Project: http://git-wip-us.apache.org/repos/asf/cordova-template-reference/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-template-reference/commit/c3266076
Tree: http://git-wip-us.apache.org/repos/asf/cordova-template-reference/tree/c3266076
Diff: http://git-wip-us.apache.org/repos/asf/cordova-template-reference/diff/c3266076

Branch: refs/heads/master
Commit: c326607671deffe148bffafdf0b1b2c4b862f24e
Parents: 2e6529d
Author: carynbear <ca...@berkeley.edu>
Authored: Fri Jul 15 14:25:27 2016 -0700
Committer: carynbear <ca...@berkeley.edu>
Committed: Fri Jul 15 14:25:27 2016 -0700

----------------------------------------------------------------------
 README.md | 2 +-
 index.js  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-template-reference/blob/c3266076/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 26d4693..00cadf2 100644
--- a/README.md
+++ b/README.md
@@ -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')
 };
 ```

http://git-wip-us.apache.org/repos/asf/cordova-template-reference/blob/c3266076/index.js
----------------------------------------------------------------------
diff --git a/index.js b/index.js
index b4292e9..33116fd 100644
--- a/index.js
+++ b/index.js
@@ -1,5 +1,5 @@
 var path = require('path');
 
-module.export = {
+module.exports = {
     dirname : path.join(__dirname, 'template_src')
 };
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org