0.1.1 • Published 7 years ago

babel-plugin-react-hyperscript-require v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

babel-plugin-react-hyperscript-require

Build
Status npm

 

Babel plugin that adds react-hyperscript import declaration

(this repo was cloned from styled-components-require and modified to be used with react-hyperscript)

 

Example

Your component.js that contains this code:

const Component = h('div', 'hello world');
export default Component;

will be transpiled to:

import h from 'react-hyperscript';

const Component = h('div', 'hello world');
export default Component;

 

Usage

npm install babel-plugin-react-hyperscript-require --save-dev

Add react-hyperscript-require into .babelrc

{
  "plugins": [
    "react-hyperscript-require"
  ]
}

 

Tests

✓ add import statement if h() is present

✓ do not add when no h in use

✓ do not add import react-hyperscript twice

✓ do not add if it already imported

 

You like?

:star: this repo

 

License

MIT © mciparelli