Ok so I like working on my TiddlyWiki using the server plugins running under node:
$ tiddlywiki ./ --init server
$ git init
$ git add .
$ git ci -m "Initial"
$ tiddlywiki ./ --server
I edit my tiddlers and am happy. Add the changes to my git repository and all is good.
Then I go to make a compiled HTML for my web server:
$ tiddlywiki ./ --rendertiddler $:/core/save/all index.html text/plain
$ scp index.html user@example.com:path/to/website/
Unfortunately all tiddlers are saved including the plugins for syncing to the node based server. How do I exclude those local development only plugins but keep the ones I want?
I think it could be one of the following:
Neither of which is needed when you run a
--rendertiddler for distributing to a simple web server.
Any guidance would be greatly appreciated. Thanks.