Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit 2cae593

Browse files
authored
chore: 🔧 releasing 1.0.2 (cra v4 bug) (#79)
1 parent 9176592 commit 2cae593

File tree

10 files changed

+18584
-11384
lines changed

10 files changed

+18584
-11384
lines changed

internals/startingTemplate/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"resolveJsonModule": true,
1515
"isolatedModules": true,
1616
"noEmit": true,
17+
"noFallthroughCasesInSwitch": true,
1718
"jsx": "react",
1819
"baseUrl": "./src"
1920
},

package-lock.json

Lines changed: 18379 additions & 11182 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
"node-plop": "0.25.0",
149149
"plop": "2.6.0",
150150
"prettier": "2.0.1",
151-
"react-scripts": "3.4.1",
151+
"react-scripts": "4.0.0",
152152
"react-test-renderer": "16.13.0",
153153
"replace-in-file": "6.0.0",
154154
"rimraf": "3.0.2",

src/app/__tests__/__snapshots__/index.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ exports[`<App /> should render and match the snapshot 1`] = `
2323
component={[Function]}
2424
/>
2525
</Switch>
26-
<UNDEFINED />
26+
<Memo(GlobalStyleComponent) />
2727
</BrowserRouter>
2828
`;

src/app/containers/GithubRepoForm/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export function GithubRepoForm() {
3434
};
3535

3636
const useEffectOnMount = (effect: React.EffectCallback) => {
37+
// eslint-disable-next-line react-hooks/exhaustive-deps
3738
useEffect(effect, []);
3839
};
3940
useEffectOnMount(() => {

0 commit comments

Comments
 (0)