Skip to content

Commit 7e3d07b

Browse files
authored
Merge pull request #121 from manuelbieh/chores-may-20
2 parents a54d000 + 37b65b9 commit 7e3d07b

9 files changed

Lines changed: 31 additions & 12 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,18 +56,18 @@ This project has out-of-the-box support for the following things:
5656

5757
- 🔥 Babel 7
5858
- 📦 Webpack 4
59-
- 🔥 ESLint 6 (with a set of custom rules which may be mostly identical to AirBnB with some personal flavor added)
59+
- 🔥 ESLint 7 (with a set of custom rules which may be mostly identical to AirBnB with some personal flavor added)
6060
- 🔥 TypeScript (via Babel)
6161
- 🔥 Prettier
62-
- 🔥 Jest 24
62+
- 🔥 Jest
6363
- 🐐 React Testing Library
6464
- ✅ React i18next for multi language support
6565
- ✅ Server Side Rendering with Express
66-
- ✅ Hot Module Reloading (HMR)
66+
- 🏎 React Fast Refresh
6767
- ✅ CSS Modules
6868
- ✅ PostCSS
6969
- ✅ Precommit hooks via lint-staged + Husky
70-
- ✅ Optional static deployment without the need for Node.js on the server
70+
- ✅ Optional static build without the need for Node.js on the server
7171
- 📕 Support for [Storybook](https://storybook.js.org/) (>= 5.0.0)
7272

7373
- Libs and Dependencies

src/shared/App.module.css.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
declare const styles: {
2+
readonly reactLogo: string;
3+
readonly wrapper: string;
4+
};
5+
export = styles;

src/shared/components/Features/Features.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,9 @@
3939
&.jest:before {
4040
content: '🃏';
4141
}
42+
43+
&.racecar:before {
44+
content: '🏎';
45+
}
4246
}
4347
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
declare const styles: {
2+
readonly hot: string;
3+
readonly i18n: string;
4+
readonly jest: string;
5+
readonly linter: string;
6+
readonly racecar: string;
7+
readonly react: string;
8+
readonly rtl: string;
9+
readonly webpack: string;
10+
readonly wrapper: string;
11+
};
12+
export = styles;

src/shared/components/Features/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ const Features = () => {
1313
<li className={css.linter}>ESLint 6</li>
1414
<li className={css.hot}>Babel 7</li>
1515
<li className={css.hot}>TypeScript (using Babel 7)</li>
16-
<li className={css.jest}>Jest 24</li>
16+
<li className={css.jest}>Jest</li>
1717
<li className={css.rtl}>React Testing Library</li>
1818
<li className={css.i18n}>{t('i18n-support')}</li>
19+
<li className={css.racecar}>React Fast Refresh</li>
1920
<li>React Router 5</li>
2021
<li>Redux (+ Thunk)</li>
2122
<li>Immer</li>
@@ -25,7 +26,6 @@ const Features = () => {
2526
<li>CSS Modules</li>
2627
<li>PostCSS</li>
2728
<li>Prettier (incl. precommit-hook via lint-staged + husky)</li>
28-
<li>HMR</li>
2929
</ul>
3030
</React.Fragment>
3131
);

src/shared/pages/Page-1/Page-1.css

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare const styles: {
2+
readonly wrapper: string;
3+
};
4+
export = styles;

src/shared/test.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/shared/variables.css.d.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)