https://github.com/mikhail-ev/rollup-plugin-stringify-jsx
stringify-jsx plugin for rollup
https://github.com/mikhail-ev/rollup-plugin-stringify-jsx
jsx plugin rollup stringify stringify-jsx templates
Last synced: 5 months ago
JSON representation
stringify-jsx plugin for rollup
- Host: GitHub
- URL: https://github.com/mikhail-ev/rollup-plugin-stringify-jsx
- Owner: mikhail-ev
- License: mit
- Created: 2019-10-04T09:01:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:00:43.000Z (over 2 years ago)
- Last Synced: 2025-02-14T20:33:44.858Z (5 months ago)
- Topics: jsx, plugin, rollup, stringify, stringify-jsx, templates
- Language: JavaScript
- Size: 32.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rollup-plugin-stringify-jsx
[Stringify-jsx](https://github.com/TargetTaiga/stringify-jsx) plugin for rollup.## Quick start
```
npm i --save-dev rollup-plugin-stringify-jsx
```
```js
import stringifyJsx from 'rollup-plugin-stringify-jsx';export default {
input: ['src/index.js'],
output: {
file: 'build/index.js'
},
plugins: [
stringifyJsx( /* stringify-jsx options */ ),
]
};
```Explore [example project](https://github.com/TargetTaiga/lit-project-template) for more information.