Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dobbs/wiki-plugin-graphviz
https://github.com/dobbs/wiki-plugin-graphviz
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dobbs/wiki-plugin-graphviz
- Owner: dobbs
- License: other
- Created: 2019-01-01T22:14:02.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T11:43:03.000Z (11 days ago)
- Last Synced: 2024-10-28T15:07:00.962Z (11 days ago)
- Language: JavaScript
- Size: 2.64 MB
- Stars: 2
- Watchers: 4
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE.txt
- Authors: AUTHORS.txt
Awesome Lists containing this project
- awesome-starred - dobbs/wiki-plugin-graphviz - (others)
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