Multiline tags are getting split into separate lines
danielroe opened this issue · 0 comments
danielroe commented
e.g.
/**
* @note Using `buildModules` helps to make production startup faster and also significantly
* decreases the size of `node_modules` in production deployments. Please refer to each
* module's documentation to see if it is recommended to use `modules` or `buildModules`.
*/
gets transformed to:
{
"tags": [
"@note Using `buildModules` helps to make production startup faster and also significantly",
"decreases the size of `node_modules` in production deployments. Please refer to each",
"module's documentation to see if it is recommended to use `modules` or `buildModules`."
],
}