Skip to main content
Module

x/docable/docs/README.md

An open-source doc block parser for generating documenation as JSON.
Latest
File

Docable Docs

Setup

Add DOCABLE_DIR_ROOT env var.

export DOCABLE_DIR_ROOT="/path/to/docable"

Change to /docs directory and install node modules.

$ cd /path/to/docable/docs
$ npm install

Running Dev Environment

The dev environment requires two shells: a shell to run the docs.ts app server and a shell to run webpack.

The dev environment is watched by watchmedo. watchmedo acts like nodemon for Node.js projects. Every time you save a file, the dev environment will be reloaded.

Run the docs.ts app server.

$ npm run dev

Run webpack and have it watch for file changes.

$ npm run dev-webpack-watch

Compile SASS to CSS

  • webpack doesn’t currently watch the .scss files. So, if you make changes to a .scss file, then make sure you run npm run sass to compile your changes.