|
1 | 1 | <idea-plugin> |
2 | 2 | <id>com.faebeee.reactcomponentcreator</id> |
3 | 3 | <name>React Component Creator</name> |
4 | | - <version>0.2.0</version> |
| 4 | + <version>0.3.0</version> |
5 | 5 | < vendor email= "[email protected]" url= "http://fabs.io">Fabio Gianini</ vendor> |
6 | 6 |
|
7 | 7 | <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description --> |
|
14 | 14 | <description> |
15 | 15 | <![CDATA[ |
16 | 16 | <h1><a href="#react-component-creator" id="react-component-creator">react-component-creator</a></h1> |
17 | | - <p>An Brainstorm Plugin to create a new react functional component with all additional files like |
18 | | - SCSS, Spec, Storybook</p> |
| 17 | + <ul> |
| 18 | + <li>An Brainstorm Plugin to create a new react functional component with all additional files like |
| 19 | + SCSS, Spec, Storybook.</li> |
| 20 | + <li>Add Redux reducer module with actions, mutations, state and types</li> |
| 21 | + </ul> |
19 | 22 | ]]> |
20 | 23 | </description> |
21 | 24 |
|
| 25 | + <change-notes> |
| 26 | + <![CDATA[ |
| 27 | + <ul> |
| 28 | + <li>v0.2.0 Add <code>Add Redux Reducer</code> Action</li> |
| 29 | + <li>v0.1.0 Add <code>Add React Component</code> Action</li> |
| 30 | + </ul> |
| 31 | + ]]> |
| 32 | + </change-notes> |
| 33 | + |
22 | 34 |
|
23 | 35 | <extensions defaultExtensionNs="com.intellij"> |
24 | 36 | <!-- Add your extensions here --> |
25 | 37 | </extensions> |
26 | 38 |
|
27 | 39 | <actions> |
28 | | - <!-- Add your actions here --> |
29 | | - <action id="ReactComponent.ComponentCreatorAction" |
30 | | - class="fabs.component.ComponentCreatorAction" |
31 | | - icon="/icons/component.png" |
32 | | - text="React Component" |
33 | | - description="Create React component"> |
| 40 | + <group description="React" id="React"> |
| 41 | + <separator/> |
| 42 | + <action id="ReactComponent.ComponentCreatorAction" |
| 43 | + class="fabs.component.ComponentCreatorAction" |
| 44 | + icon="/icons/component.png" |
| 45 | + text="React component" |
| 46 | + description="create new react component"> |
| 47 | + </action> |
| 48 | + |
| 49 | + <action id="ReactComponent.ReducerCreatorAction" |
| 50 | + class="fabs.reducer.ReducerCreatorAction" |
| 51 | + icon="/icons/store.png" |
| 52 | + text="Redux reducer" |
| 53 | + description="create new redux reducer"> |
| 54 | + </action> |
| 55 | + <separator/> |
34 | 56 | <add-to-group group-id="NewGroup" anchor="first"/> |
35 | | - </action> |
| 57 | + </group> |
36 | 58 | </actions> |
37 | 59 | </idea-plugin> |
0 commit comments