Expose module.exports to tiddler modules

Needed to incorporate an upcoming third-party library.

@natecain - do you think this is OK from a compatibility perspective?
This commit is contained in:
Jermolene 2014-07-20 18:06:19 +01:00
parent e3dc00573d
commit beabae8d2b
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ $tw.modules.execute = function(moduleName,moduleRoot) {
tiddler = $tw.wiki.getTiddler(name) || $tw.wiki.getTiddler(name + ".js") || $tw.wiki.getTiddler(moduleName) || $tw.wiki.getTiddler(moduleName + ".js") ,
_exports = {},
sandbox = {
module: {},
module: {exports: _exports},
//moduleInfo: moduleInfo,
exports: _exports,
console: console,