Static documentation generator for GEF components.
Known to work on nodeJS version v8.9.4
.
Try...
nvm use 8
And then...
npm install
npm link
To generate the HTML output into the project docs
folder, using the markdown from the project src
folder, run this command...
npm run html
To make updates to the generated CSS files from the scss
source...
npm run sass
If you have added new JS files to the project, you may include them in the main.js
file...
npm run js
Or, if you're feeling like you want it all, try this...
npm run build
This is only an example: https://bbc.github.io/gef-docs/components/hello-world/
It's just HTML, so you only need to open up a web browser :-)
If you're trying to preview the site running off of your desktop, I recommend using the awesome 'serve' module.
From the project base directory simply run...
serve
Then navigate to the resulting server address like so: http://localhost:8888/gef-docs/components/hello-world
using whatever hostname and port is appropriate.