0.3.5 • Published 3 years ago

grunt-vdoc v0.3.5

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

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.

0.3.0

3 years ago

0.1.2

3 years ago

0.2.0

3 years ago

0.1.8

3 years ago

0.3.5

3 years ago

0.1.7

3 years ago

0.1.9

3 years ago

0.3.2

3 years ago

0.1.4

3 years ago

0.3.1

3 years ago

0.1.3

3 years ago

0.3.4

3 years ago

0.1.6

3 years ago

0.3.3

3 years ago

0.1.5

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago