mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
Currently unused. Intended to be used for JSDoc core dependencies that must be available everywhere, such as the config and the event bus.
16 lines
253 B
JavaScript
16 lines
253 B
JavaScript
/**
|
|
* Core functionality for JSDoc.
|
|
*
|
|
* @module @jsdoc/core
|
|
*/
|
|
|
|
const config = require('./lib/config');
|
|
const dependencies = require('./lib/dependencies');
|
|
const name = require('./lib/name');
|
|
|
|
module.exports = {
|
|
config,
|
|
dependencies,
|
|
name,
|
|
};
|