Simple API Document Generator for Web Components.
Install with npm
$ npm install wcdoc
var wcdoc = require('wcdoc');
wcdoc.run({
src: ['src/**/*.js'],
basePath: __dirname
}).then(function(result) {
console.log(result);
});
Install locked dev dependencies with Yarn:
$ yarn install && yarn test