1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 10:46:57 +00:00

Merge 6c3a235ad8663b51875212c2adb79c9c40e9c6fc into 961e74f73d230d0028efb586db07699120eac888

This commit is contained in:
Arlen Beiler 2025-04-03 13:16:46 -04:00 committed by GitHub
commit 5308982cb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -928,7 +928,7 @@ $tw.modules.execute = function(moduleName,moduleRoot) {
moduleInfo.definition(moduleInfo,moduleInfo.exports,sandbox.require);
} else if(typeof moduleInfo.definition === "string") { // String
moduleInfo.exports = _exports;
$tw.utils.evalSandboxed(moduleInfo.definition,sandbox,tiddler.fields.title);
$tw.utils.evalSandboxed(moduleInfo.definition,sandbox,tiddler.fields.filepath || tiddler.fields.title);
if(sandbox.module.exports) {
moduleInfo.exports = sandbox.module.exports; //more codemirror workaround
}
@ -2126,6 +2126,9 @@ $tw.loadPluginFolder = function(filepath,excludeRegExp) {
for(var t=0; t<tiddlers.length; t++) {
var tiddler= tiddlers[t];
if(tiddler.title) {
if(typeof process !== "undefined" && process.env.NODE_DEV_PATH_STACKTRACE && tiddlers.length === 1) {
tiddler.filepath = pluginFiles[f].filepath;
}
pluginInfo.tiddlers[tiddler.title] = tiddler;
}
}