Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dobbs/wiki-plugin-graphviz


https://github.com/dobbs/wiki-plugin-graphviz

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# Federated Wiki - Graphviz Plugin

This plugin, type: graphviz, extends the markup of the federated wiki.

## Development workflow

# build the plugin into an NPM package
npm version prerelease --preid=wip --force --no-git-tag-version
PKG=$(npm pack | tail -1)
mv $PKG ../wiki

# install the plugin into a local copy of wiki
cd ../wiki
npm install $PKG

# run wiki
node index.js --data ./data --security_legacy

# visit http://localhost:3000 to test the plugin revisions

## Release workflow

npm version patch
TAG="v$(jq -r .version package.json)"
git push --atomic origin main "$TAG"
npm publish

## License

MIT