Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 924 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 924 Bytes

======================================================= This version has been set up to run on the HP touch pad

EnyoJS Api Tool

This Bootplate based application scans EnyoJS source code on the fly and produces navigable documentation.

The assets/manifest.json file identifies the code packages to be scanned for documentation.

IMPORTANT: in the context of the Api Tool application the $enyo and $lib macros refer to internal folders. You should not use those macros in assets/manifest.json in a deployed Api Tool application. Instead, use complete paths (relative to the Api Tool folder, or absolute).

For example, given:

enyo/
lib/
  layout/
api-tool/

manifest.json should look like this:

[
	{"name": "enyo", "path": "../enyo/source"}
	{"name": "layout", "path": "../lib/layout"}
]