babel-plugin-remove-export-keywords
Remove plugin export keywords
Last updated 5 years ago by johno .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install babel-plugin-remove-export-keywords 
SYNC missed versions from official npm registry.

babel-plugin-remove-export-keywords

Remove export keywords by coercing them into variable declarations. Used by MDX.

Installation

yarn add babel-plugin-remove-export-keywords

Usage

const babel = require('@babel/core')

const plugin = require('babel-plugin-remove-export-keywords')

const jsx = `
export const Foo = () => (
  <div>
    <Button />
  </div>
)
`

const plugin = new BabelPluginApplyMdxTypeProp()

const result = babel.transform(jsx, {
  configFile: false,
  plugins: ['@babel/plugin-syntax-jsx', plugin]
})

console.log(result.code)

Input

export const Foo = () => (
  <div>
    <Button />
  </div>
)

Output

const Foo = () => (
  <div>
    <Button mdxType="Button" />
  </div>
)

License

MIT

Current Tags

  • 2.0.0-ci.50                                ...           ci (5 years ago)
  • 1.6.22                                ...           latest (5 years ago)
  • 2.0.0-next.9                                ...           next (5 years ago)

64 Versions

  • 2.0.0-ci.50                                ...           5 years ago
  • 2.0.0-ci.43                                ...           5 years ago
  • 2.0.0-ci.35                                ...           5 years ago
  • 2.0.0-next.9                                ...           5 years ago
  • 1.6.22                                ...           5 years ago
  • 1.6.21                                ...           5 years ago
  • 1.6.20                                ...           5 years ago
  • 1.6.19                                ...           5 years ago
  • 2.0.0-next.8                                ...           6 years ago
  • 1.6.18                                ...           6 years ago
  • 1.6.17                                ...           6 years ago
  • 2.0.0-next.7                                ...           6 years ago
  • 1.6.16                                ...           6 years ago
  • 1.6.15                                ...           6 years ago
  • 2.0.0-next.6                                ...           6 years ago
  • 2.0.0-next.5                                ...           6 years ago
  • 1.6.14                                ...           6 years ago
  • 2.0.0-next.4                                ...           6 years ago
  • 1.6.13                                ...           6 years ago
  • 1.6.12                                ...           6 years ago
  • 2.0.0-next.3                                ...           6 years ago
  • 1.6.11                                ...           6 years ago
  • 1.6.10                                ...           6 years ago
  • 1.6.9                                ...           6 years ago
  • 1.6.8                                ...           6 years ago
  • 1.6.7                                ...           6 years ago
  • 1.6.6                                ...           6 years ago
  • 1.6.5                                ...           6 years ago
  • 2.0.0-next.1                                ...           6 years ago
  • 1.6.4                                ...           6 years ago
  • 2.0.0-next.0                                ...           6 years ago
  • 1.6.3                                ...           6 years ago
  • 1.6.2                                ...           6 years ago
  • 1.6.1                                ...           6 years ago
  • 1.6.0                                ...           6 years ago
  • 1.5.9                                ...           6 years ago
  • 1.5.8                                ...           6 years ago
  • 1.5.8-alpha.0                                ...           6 years ago
  • 1.5.7                                ...           6 years ago
  • 1.5.7-alpha.0                                ...           6 years ago
  • 1.5.6                                ...           6 years ago
  • 1.5.6-alpha.0                                ...           6 years ago
  • 1.5.6-ci.0                                ...           6 years ago
  • 1.5.5                                ...           6 years ago
  • 1.5.4                                ...           6 years ago
  • 1.5.3                                ...           6 years ago
  • 1.5.2                                ...           6 years ago
  • 1.5.1                                ...           7 years ago
  • 1.5.0                                ...           7 years ago
  • 1.4.5                                ...           7 years ago
  • 1.4.4                                ...           7 years ago
  • 1.4.3                                ...           7 years ago
  • 1.4.2                                ...           7 years ago
  • 1.4.1                                ...           7 years ago
  • 1.4.0                                ...           7 years ago
  • 1.3.2                                ...           7 years ago
  • 1.3.1                                ...           7 years ago
  • 1.3.0                                ...           7 years ago
  • 1.2.2                                ...           7 years ago
  • 1.2.1                                ...           7 years ago
  • 1.2.0                                ...           7 years ago
  • 1.1.6                                ...           7 years ago
  • 1.1.5                                ...           7 years ago
  • 1.1.4                                ...           7 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 64
Dependencies (0)
None
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |