grunt-vdoc

0.3.5 • Public • Published

grunt-vdoc

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-vdoc --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-vdoc');

The "vdoc" task

Overview

In your project's Gruntfile, add a section named vdoc to the data object passed into grunt.initConfig().

grunt.initConfig({
  vdoc: {
    compile: {
      options: {
        meta: {
          name: "myProject",
          version: "0.0.0",
          github: "https://github.com/user/myProject"
        },
        dest: "./docs/build/",
        source: "./src/build/lib.js",
        content: "./docs/content/data.json",
        templates: "./docs/theme/",
        partials: "./docs/theme/partials/",
        assets: "./docs/theme/assets/"
      }
    }
  },
});

Options

Specify directories
  • templates where are the handlebar templates located?
  • partials where are the partials located? (The sub-templates handlebars use)
  • dest where is the destination of the built documentation? (html files)
  • assets where are the assets located? (css, svg, js, other assets for documentation)
Specify files
  • content where is the documentation content located?
  • source where is the source code to get the documentation content from?
Meta data
  • Add any meta data you want, the meta object is transfered to the documentation content in the json file. Which can then be used with the handlebars.



Readme

Keywords

Package Sidebar

Install

npm i grunt-vdoc

Weekly Downloads

1

Version

0.3.5

License

none

Unpacked Size

17.7 kB

Total Files

16

Last publish

Collaborators

  • matiasvlevi