Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bash-archive/babel-plugin-transform-preact-import

Imports preact for files containing jsx
https://github.com/bash-archive/babel-plugin-transform-preact-import

babel preact

Last synced: 30 days ago
JSON representation

Imports preact for files containing jsx

Awesome Lists containing this project

README

        

# babel-plugin-transform-preact-import
*BPTPI for short, pronounced Bipitipy*

[![Build and Test](https://github.com/bash/babel-plugin-transform-preact-import/actions/workflows/build.yml/badge.svg)](https://github.com/bash/babel-plugin-transform-preact-import/actions/workflows/build.yml)

> This plugin adds `import { h } from 'preact'` to files containing JSX

## Example

**In**

```js
const Title = (value) =>

{value}


```

**Out**

```js
import { h } from 'preact'
const Title = (value) =>

{value}


```

## Installation

```
npm install --save-dev babel-plugin-transform-preact-import
```

## Usage

### Via `.babelrc` (Recommended)

```json
{
"plugins": [
"transform-preact-import"
]
}
```

### Via CLI

```
babel --plugins babel-plugin-transform-preact-import script.js
```

### Via Node API

```js
require("babel-core").transform("code", {
plugins: ["transform-preact-import"]
});
```