Skip to content

Commit 247d961

Browse files
committed
alias lookupFiles, loadRc, loadPkgRc and loadOptions to lib/cli module; fixes #4398
- fixes API documentation for all of these (and `module:lib/cli.main`) via JSDoc aliasing - aliases `lib/cli/cli.js` to `module:lib/cli`; `module:lib/cli/cli` is no longer a thing - the `lib/cli/options.js` and `lib/cli/lookup-files.js` _modules_ (not necessarily their _contents_) are now private example usage: ```js const {loadRc, loadPkgRc, loadOptions, lookupFiles} = require('mocha/lib/cli'); ```
1 parent 4b2b6e0 commit 247d961

File tree

4 files changed

+31
-19
lines changed

4 files changed

+31
-19
lines changed

lib/cli/cli.js

+19-8
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,24 @@
33
'use strict';
44

55
/**
6-
* This is where we finally parse and handle arguments passed to the `mocha` executable.
7-
* Option parsing is handled by {@link https://npm.im/yargs yargs}.
8-
* If executed via `node`, this module will run {@linkcode module:lib/cli/cli.main main()}.
9-
*
10-
* @private
11-
* @module
6+
* Contains CLI entry point and public API for programmatic usage in Node.js.
7+
* - Option parsing is handled by {@link https://npm.im/yargs yargs}.
8+
* - If executed via `node`, this module will run {@linkcode module:lib/cli.main main()}.
9+
* @public
10+
* @module lib/cli
1211
*/
1312

1413
const debug = require('debug')('mocha:cli:cli');
1514
const symbols = require('log-symbols');
1615
const yargs = require('yargs/yargs');
1716
const path = require('path');
18-
const {loadOptions, YARGS_PARSER_CONFIG} = require('./options');
17+
const {
18+
loadRc,
19+
loadPkgRc,
20+
loadOptions,
21+
YARGS_PARSER_CONFIG
22+
} = require('./options');
23+
const lookupFiles = require('./lookup-files');
1924
const commands = require('./commands');
2025
const ansi = require('ansi-colors');
2126
const {repository, homepage, version, gitter} = require('../../package.json');
@@ -25,7 +30,8 @@ const {cwd} = require('../utils');
2530
* - Accepts an `Array` of arguments
2631
* - Modifies {@link https://nodejs.org/api/modules.html#modules_module_paths Node.js' search path} for easy loading of consumer modules
2732
* - Sets {@linkcode https://nodejs.org/api/errors.html#errors_error_stacktracelimit Error.stackTraceLimit} to `Infinity`
28-
* @summary Mocha's main entry point from the command-line.
33+
* @public
34+
* @summary Mocha's main command-line entry-point.
2935
* @param {string[]} argv - Array of arguments to parse, or by default the lovely `process.argv.slice(2)`
3036
*/
3137
exports.main = (argv = process.argv.slice(2)) => {
@@ -71,6 +77,11 @@ exports.main = (argv = process.argv.slice(2)) => {
7177
.parse(args._);
7278
};
7379

80+
exports.lookupFiles = lookupFiles;
81+
exports.loadOptions = loadOptions;
82+
exports.loadPkgRc = loadPkgRc;
83+
exports.loadRc = loadRc;
84+
7485
// allow direct execution
7586
if (require.main === module) {
7687
exports.main();

lib/cli/index.js

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
'use strict';
22

3-
/**
4-
* Just exports {@link module:lib/cli/cli} for convenience.
5-
* @private
6-
* @module lib/cli
7-
* @exports module:lib/cli/cli
8-
*/
93
module.exports = require('./cli');

lib/cli/lookup-files.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
'use strict';
22

3+
/**
4+
* Contains `lookupFiles`, which takes some globs/dirs/options and returns a list of files.
5+
* @module
6+
* @private
7+
*/
8+
39
var fs = require('fs');
410
var path = require('path');
511
var glob = require('glob');
@@ -53,7 +59,7 @@ function hasMatchingExtname(pathname, exts) {
5359
* **Make no assumption that the names will be sorted in any fashion.**
5460
*
5561
* @public
56-
* @memberof Mocha.utils
62+
* @alias module:lib/cli.lookupFiles
5763
* @param {string} filepath - Base path to start searching from.
5864
* @param {string[]} [extensions=[]] - File extensions to look for.
5965
* @param {boolean} [recursive=false] - Whether to recurse into subdirectories.

lib/cli/options.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
/**
44
* Main entry point for handling filesystem-based configuration,
55
* whether that's a config file or `package.json` or whatever.
6-
* @module
6+
* @module lib/cli/options
7+
* @private
78
*/
89

910
const fs = require('fs');
@@ -150,7 +151,7 @@ const parse = (args = [], defaultValues = {}, ...configObjects) => {
150151
* @param {Object} [args] - Arguments object
151152
* @param {string|boolean} [args.config] - Path to config file or `false` to skip
152153
* @public
153-
* @memberof module:lib/cli/options
154+
* @alias module:lib/cli.loadRc
154155
* @returns {external:yargsParser.Arguments|void} Parsed config, or nothing if `args.config` is `false`
155156
*/
156157
const loadRc = (args = {}) => {
@@ -167,7 +168,7 @@ module.exports.loadRc = loadRc;
167168
* @param {Object} [args] - Arguments object
168169
* @param {string|boolean} [args.config] - Path to `package.json` or `false` to skip
169170
* @public
170-
* @memberof module:lib/cli/options
171+
* @alias module:lib/cli.loadPkgRc
171172
* @returns {external:yargsParser.Arguments|void} Parsed config, or nothing if `args.package` is `false`
172173
*/
173174
const loadPkgRc = (args = {}) => {
@@ -210,7 +211,7 @@ module.exports.loadPkgRc = loadPkgRc;
210211
* @summary Parses options read from `.mocharc.*` and `package.json`.
211212
* @param {string|string[]} [argv] - Arguments to parse
212213
* @public
213-
* @memberof module:lib/cli/options
214+
* @alias module:lib/cli.loadOptions
214215
* @returns {external:yargsParser.Arguments} Parsed args from everything
215216
*/
216217
const loadOptions = (argv = []) => {

0 commit comments

Comments
 (0)