Skip to content

Commit 3bd644c

Browse files
committed
v0.1.0
1 parent 3b3897b commit 3bd644c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44

55
- ❌ Improve errors where the node_modules folder is created
66

7-
### It automatically builds a react, webpack, and ts working environment. This package helps you set up:
7+
### It automatically builds a react, webpack, and ts working environment. This package helps the following people:
88

9-
- Webpack build setting
10-
- Airbnb convention(eslint, prettier)
11-
- Yarn berry package manager
12-
- Deployment with zero-install eliminates the need to install additional packages.
9+
- People who want a light initial project because the create-react-app CRA is heavy
10+
- People who need a CRA with react, typescript, yarn, etc
11+
- People who start with web pack settings for react
12+
- People who want to start a project with airbnb convention (eslint, prettier)
13+
- People who do not want to install additional packages when collaborating with yarn berry's zero-install
1314

1415
<br />
1516

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const App = () => {
88
// <Route path="/" />
99
// </Routes>
1010
// </BrowserRouter>
11-
return <h1>Home</h1>;
11+
return <h1>React webpack typescript boilerplate</h1>;
1212
};
1313

1414
export default App;

0 commit comments

Comments
 (0)