documentationjs / documentationjs/documentation

Support 'paths' option

Open
#140 13 comments 2 reactions 0 assignees View on GitHub
enhancement
Dominant language
JavaScript
Stars
5.8k
Forks
481
PR merge metrics
No merged PRs in 30d

Description

I probably do something wrong, but I'm building a webpack application (classic CommonJS app), and documentationjs seems to stop at the main.js without resolving the required modules.

```
'use strict';

var App = require('app/app');

/**
* Main module - App entry point
* @module Main
*/

var Main = function(){};

/**
* Callback fired once the document is ready
* @public
*/
Main.prototype.onReady = function() {
var app = new App();
app.init();
}

var main = module.exports = new Main();
```

What do I do wrong? Thanks!

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.