I know this is a question so technical that it could fit into the developers group, but I think it could be of general interest.
Currently, on the node version you include the plugins that you want to use on the
tiddliwiki.info file. This is very convenient, but I want to know if this could be a bit more flexible than just requiring official plugins.
What I want to do is to reference one or more of the plugins that I'm developing, so I can create an edition separately from the development of the plugin. So, ideally I could import a plugin in a fashion like:
"plugins": [
"tiddlywiki/tiddlyweb",
"tiddlywiki/filesystem",
"../../myPluginDirectory"
],
Regards