Skip to content

Commit

Permalink
added base.logger dependency in documentation
Browse files Browse the repository at this point in the history
added base.logger dependency in documentation
  • Loading branch information
pranavjha committed Sep 26, 2014
1 parent da0e9c1 commit 72d0b10
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @requires base-resolver/unloader
* @requires base-resolver/utils
* @requires {@link external:q}
* @requires {@link external:base-logger}
*/
var q = require('q');
var path = require('path');
Expand Down Expand Up @@ -168,4 +169,4 @@ module.exports = function (configPathOrArray, basePath) {
resolve(resolverFactory(configPathOrArray, basePath));
}
);
};
};
1 change: 1 addition & 0 deletions lib/resolver/configurations.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* {@link module:base-resolver} before feeding to this module.
* @module base-resolver/configurations
* @requires base-resolver/utils
* @requires {@link external:base-logger}
*/
var Q = require('q');
var path = require('path');
Expand Down
1 change: 1 addition & 0 deletions lib/resolver/resolution-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* @module base-resolver/resolution-provider
* @requires base-resolver/unloader
* @requires base-resolver/utils
* @requires {@link external:base-logger}
*/
var Q = require('q');
var utils = require('./utils');
Expand Down
1 change: 1 addition & 0 deletions lib/resolver/unloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* invoking all handlers registered to unload dependency and executing them in the proper sequence on unload.
* @module base-resolver/unloader
* @requires {@link external:q}
* @requires {@link external:base-logger}
*/
var q = require('q');
var logger = require('base.logger')('RESOLVER/unloader');
Expand Down

0 comments on commit 72d0b10

Please sign in to comment.