UNPKG

gatsby-plugin-mdx-v1

Version:
15 lines (13 loc) 331 B
module.exports = function removeExportKeywords() { return { visitor: { ExportNamedDeclaration(path) { const declaration = path.node.declaration // Ignore "export { Foo as default }" syntax if (declaration) { path.replaceWith(declaration) } }, }, } }