generate-react-cli 7.0.4 → 7.0.5
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.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [7.0.5](https://github.com/arminbro/generate-react-cli/compare/v7.0.4...v7.0.5) (2022-01-17)
|
|
6
|
+
|
|
5
7
|
### [7.0.4](https://github.com/arminbro/generate-react-cli/compare/v7.0.3...v7.0.4) (2021-08-07)
|
|
6
8
|
|
|
7
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generate-react-cli",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.5",
|
|
4
4
|
"description": "A simple React CLI to generate components instantly and more.",
|
|
5
5
|
"repository": "https://github.com/arminbro/generate-react-cli",
|
|
6
6
|
"bugs": "https://github.com/arminbro/generate-react-cli/issues",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"cz-conventional-changelog": "^3.3.0",
|
|
51
|
-
"eslint": "^7.
|
|
52
|
-
"eslint-config-airbnb-base": "^
|
|
51
|
+
"eslint": "^8.7.0",
|
|
52
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
53
53
|
"eslint-config-prettier": "^8.3.0",
|
|
54
|
-
"eslint-plugin-prettier": "^
|
|
55
|
-
"prettier": "2.
|
|
54
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
55
|
+
"prettier": "2.5.1",
|
|
56
56
|
"rimraf": "^3.0.2",
|
|
57
57
|
"standard-version": "^9.3.1"
|
|
58
58
|
},
|
package/readme.md
CHANGED
|
@@ -13,6 +13,8 @@ To help speed up productivity in React projects and stop copying, pasting, and r
|
|
|
13
13
|
|
|
14
14
|
A short [article](https://dev.to/arminbro/generate-react-cli-1ooh) that goes a little deeper into why we created GRC if you have the time.
|
|
15
15
|
|
|
16
|
+
Suppose you enjoy learning by watching tutorial videos. Here's an excellent [video](https://www.youtube.com/watch?v=NEvnt3MWttY) on how to use GRC by [Eric Murphy](https://www.youtube.com/channel/UC5KDiSAFxrDWhmysBcNqtMA).
|
|
17
|
+
|
|
16
18
|
**_A few notes:_**
|
|
17
19
|
|
|
18
20
|
- Now supports custom component types ([read more](#custom-component-types)). 🎉
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
module.exports = `import React from 'react';
|
|
1
|
+
module.exports = `import React, { FC } from 'react';
|
|
2
2
|
import styles from './TemplateName.module.css';
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
interface TemplateNameProps {}
|
|
5
|
+
|
|
6
|
+
const TemplateName: FC<TemplateNameProps> = () => (
|
|
5
7
|
<div className={styles.TemplateName} data-testid="TemplateName">
|
|
6
8
|
TemplateName Component
|
|
7
9
|
</div>
|