geops-docjs-template v1.1.0
geOps theme for documentation.js
This is a custom theme for documentation.js
Based on work from: https://github.com/kalinchernev/documentation-theme-ecl/
Options
The theme is ready to accept the following options from your configuration:
project-nameproject-descriptionproject-url
Usage
CLI
Use the documentation.js CLI
Example:
$ npx documentation build **/_types/*.js --theme . -f html -o example/appWhere the --theme flag should point to the module (index.js) of the theme.
Node API
See the html generation script for an example of the
formats.html method as pointed out in the documentation pages.
Theme development
Requirements:
- Node.js current (8.x recommended)
yarnornpm
There are a few npm script tasks which you can use:
develop:assetsdevelop:themedevelop:server
Order is important, so it's recommended you start a separate terminal session for each task.
Develop assets
Takes care of CSS and JavaScript assets.
- Makes use of
webpackCLI. - Automatically discovers configuration from
webpack.config.js - Bundles assets to
assets/bundle - Watches for changes.
Develop theme
Takes care of templates.
- Makes use of
documentationjsCLI. - Takes input of glob patterns where documentation should be extracted from.
- Builds HTML from underscore templates and moves
images,faviconandbundlefolders into a targetdistfolder. Thus, ensure that assets are bundled before they are moved. - Watches for changes
Develop server
Delivers results to the browser and reloads on changes.
- Makes use of
reloadCLI. - Takes input of
distfolder wheredevelop:themestores its results. - Can optionally listen to different ports if necessary.
- Serves
distfolder as a static site - Reloads when there are changes in
distfolder.
Maintenance notes
Please commit the results of develop:assets in assets/bundle. This simplifies the workflow of publishing them to npm.
Raw/Source styles and scripts in assets/js and assets/styles are ignored and not published to npm.