babel-plugin-react-hyperscript-require

0.1.1 • Public • Published

babel-plugin-react-hyperscript-require

BuildStatus 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?

⭐️ this repo

 

License

MIT © mciparelli

Package Sidebar

Install

npm i babel-plugin-react-hyperscript-require

Weekly Downloads

3

Version

0.1.1

License

MIT

Last publish

Collaborators

  • mciparelli