Skip to content

Commit 19c1d09

Browse files
committed
Migrare from react-scripts to vite/vitest
To future prove React Codespaces, this change abandons react-scripts and moves everything to vite as a near seamless transition from the create-react-app based approach when this app was created. Reference: https://vitejs.dev/ and https://vitest.dev/ Related: reactjs/react.dev#5487
1 parent 338a6cb commit 19c1d09

9 files changed

+4474
-26665
lines changed

README.md

+12-20
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You've got a blank canvas to work on from a git perspective as well. There's a s
66

77
Everything you do here is contained within this one codespace. There is no repository on GitHub yet. If and when you’re ready you can click "Publish Branch" and we’ll create your repository and push up your project. If you were just exploring then and have no further need for this code then you can simply delete your codespace and it's gone forever.
88

9-
This project was bootstrapped for you with [Create React App](https://github.com/facebook/create-react-app).
9+
This project was bootstrapped for you with [Vite](https://vitejs.dev/).
1010

1111
## Available Scripts
1212

@@ -17,7 +17,7 @@ In the project directory, you can run:
1717
We've already run this for you in the `Codespaces: server` terminal window below. If you need to stop the server for any reason you can just run `npm start` again to bring it back online.
1818

1919
Runs the app in the development mode.\
20-
Open [http://localhost:3000](http://localhost:3000) in the built-in Simple Browser (`Cmd/Ctrl + Shift + P > Simple Browser: Show`) to view your running application.
20+
Open [http://localhost:3000/](http://localhost:3000/) in the built-in Simple Browser (`Cmd/Ctrl + Shift + P > Simple Browser: Show`) to view your running application.
2121

2222
The page will reload automatically when you make changes.\
2323
You may also see any lint errors in the console.
@@ -37,42 +37,34 @@ Your app is ready to be deployed!
3737

3838
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
3939

40-
### `npm run eject`
41-
42-
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
43-
44-
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
45-
46-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
47-
48-
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
49-
5040
## Learn More
5141

52-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
42+
You can learn more in the [Vite documentation](https://vitejs.dev/guide/).
43+
44+
To learn Vitest, a Vite-native testing framework, go to [Vitest documentation](https://vitest.dev/guide/)
5345

5446
To learn React, check out the [React documentation](https://reactjs.org/).
5547

5648
### Code Splitting
5749

58-
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
50+
This section has moved here: [https://sambitsahoo.com/blog/vite-code-splitting-that-works.html](https://sambitsahoo.com/blog/vite-code-splitting-that-works.html)
5951

6052
### Analyzing the Bundle Size
6153

62-
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
54+
This section has moved here: [https://github.com/btd/rollup-plugin-visualizer#rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer#rollup-plugin-visualizer)
6355

6456
### Making a Progressive Web App
6557

66-
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
58+
This section has moved here: [https://dev.to/hamdankhan364/simplifying-progressive-web-app-pwa-development-with-vite-a-beginners-guide-38cf](https://dev.to/hamdankhan364/simplifying-progressive-web-app-pwa-development-with-vite-a-beginners-guide-38cf)
6759

6860
### Advanced Configuration
6961

70-
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
62+
This section has moved here: [https://vitejs.dev/guide/build.html#advanced-base-options](https://vitejs.dev/guide/build.html#advanced-base-options)
7163

7264
### Deployment
7365

74-
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
66+
This section has moved here: [https://vitejs.dev/guide/build.html](https://vitejs.dev/guide/build.html)
7567

76-
### `npm run build` fails to minify
68+
### Troubleshooting
7769

78-
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
70+
This section has moved here: [https://vitejs.dev/guide/troubleshooting.html](https://vitejs.dev/guide/troubleshooting.html)

public/index.html index.html

+5-13
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,19 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<link rel="icon" href="/favicon.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Web site created using create-react-app"
10+
content="Web site created using @vitejs/plugin-react"
1111
/>
12-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
12+
<link rel="apple-touch-icon" href="/logo192.png" />
1313
<!--
1414
manifest.json provides metadata used when your web app is installed on a
1515
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1616
-->
17-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18-
<!--
19-
Notice the use of %PUBLIC_URL% in the tags above.
20-
It will be replaced with the URL of the `public` folder during the build.
21-
Only files inside the `public` folder can be referenced from the HTML.
22-
23-
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24-
work correctly both with client-side routing and a non-root public URL.
25-
Learn how to configure a non-root public URL by running `npm run build`.
26-
-->
17+
<link rel="manifest" href="/manifest.json" />
2718
<title>React App</title>
2819
</head>
2920
<body>
@@ -40,4 +31,5 @@
4031
To create a production bundle, use `npm run build` or `yarn build`.
4132
-->
4233
</body>
34+
<script type="module" src="/src/index.jsx"></script>
4335
</html>

jsconfig.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"compilerOptions": {
3+
"moduleResolution": "node"
4+
}
5+
}

0 commit comments

Comments
 (0)