babel-plugin-minibum-jsx 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README +16 -0
  2. package/package.json +2 -2
package/README CHANGED
@@ -7,3 +7,19 @@ runtime calls required to create and compose UI components.
7
7
 
8
8
  The plugin is intended to keep component markup concise while fitting into a
9
9
  small, fast build pipeline.
10
+
11
+ ## Installation
12
+
13
+ Install the Babel plugin with npm:
14
+
15
+ ```sh
16
+ npm install --save-dev babel-plugin-minibum-jsx
17
+ ```
18
+
19
+ Then add `minibum-jsx` to the `plugins` array in your Babel configuration:
20
+
21
+ ```json
22
+ {
23
+ "plugins": ["minibum-jsx"]
24
+ }
25
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "babel-plugin-minibum-jsx",
3
- "version": "1.1.0",
4
- "description": "A Babel plugin that transforms JSX into Minibum.",
3
+ "version": "1.1.1",
4
+ "description": "Minibum JSX is a lightweight JSX plugin for the Minibum ecosystem. It enables\nJSX syntax in application source files and transforms JSX elements into the\nruntime calls required to create and compose UI components.",
5
5
  "main": "src/index.js",
6
6
  "types": "types/index.d.ts",
7
7
  "exports": {