Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:00:43.000Z (about 2 years ago)
- Last Synced: 2025-01-02T03:53:32.974Z (6 days 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.