パッケージの詳細

jsdoc-babel

ctumolosus117.2kMIT0.5.0

A JSDoc plugin that transforms ES6 source files with Babel before they are processsed.

jsdoc, babel, plugin

readme

NPM Version Build Status Downloads Greenkeeper badge

jsdoc-babel

A JSDoc plugin that transforms source files with Babel before they are processed.

JSDoc uses the Babylon JavaScript parser since version 3.5.0, which means that JSDoc can parse any JavaScript or JSX file that is supported by the Babel compiler. You may not need to use this plugin unless you need to preprocess unsupported syntax in your source code.

Installation

The jsdoc-babel plugin can be installed using NPM.

npm install jsdoc-babel --save-dev

Usage

To use plugin you should include the plugin module in the plugins array of JSDoc's configuration file.

{
    "plugins": ["node_modules/jsdoc-babel"]
}

Processing files with different extensions

By default, the plugin only processes files that have a .js extension. You could enable transformation for other file extensions by adding the following settings to your JSDoc configuration file:

{
    "plugins": ["node_modules/jsdoc-babel"],
    "babel": {
        "extensions": ["js", "es6", "jsx"]
    }
}

Passing options through Babel

If Babel can resolve a .babelrc file in your project, it will be parsed as the transformer options.

Alternatively, you can define options to be passed through Babel by adding them to your JSDoc configuration file:

{
    "plugins": ["node_modules/jsdoc-babel"],
    "babel": {
        "presets": ["@babel/env"]
    }
}

Note that options defined in the JSDoc configuration file will take precedence over those defined in your .babelrc file.

If you would prefer to disable .babelrc file resolution, you can use the babelrc option:

{
    "plugins": ["node_modules/jsdoc-babel"],
    "babel": {
        "presets": ["@babel/env"],
        "babelrc": false
    }
}

License

MIT

更新履歴

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

0.5.0 - 2018-08-31

  • Use Babel 7 to transpile code before passing to JSDOC

0.4.0 - 2018-03-06

  • Added code to preserve line numbers (#85)
  • Update dependencies

0.3.0 - 2016-12-07

  • Inject file name into babel transformer to enable .babelrc file resolution

0.2.1 - 2016-06-30

  • Move Babel to peer dependencies

0.2.0 - 2016-05-29

  • Use code linter and unit tests to verify code quality
  • Setup continuous integration with Travis CI.
  • Use Babel 6 to transpile code before passing to JSDOC
  • Refactor project source code to use ES6 syntax

0.1.0 - 2015-06-27

  • Use Babel 5 to transpile code before passing to JSDOC