esdoc-livescript
v1.0.1
Published
Allows esdoc to use livescript exports
Readme
esdoc-node
Usage
Get the package:
npm install esdoc-nodeAdd the following to your esdoc config file:
{
"plugins": [{"name": "esdoc-node"}]
}What it does
It converts the input of esdoc so that node.js' exports and
module.exports becomes ES6's export.
This table shows the translation rules:
| Before | After |
|-------------------------------------------|----------------------------------|
|module.exports = ...; |export default ...; |
|exports.Hello = class Hello { ... }; |export class Hello { ... }; |
|exports.world = function world() { ... };|export function world() { ... };|
|exports.value = value; |export { value }; |
|exports.value = ...; |export let value = ...; |
