Skip to content

Commit 4397f1b

Browse files
committed
v0.0.1
1 parent b0885df commit 4397f1b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# react-webpack-ts-boilerplate
1+
# create-react-app-ts-webpack
22

33
### 2022-11-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 the following people:
7+
### It automatically builds a react, typescript, and webpack working environment. This package helps the following people:
88

99
- People who want a light initial project because the create-react-app CRA is heavy
1010
- People who need a CRA with react, typescript, yarn, etc
@@ -17,7 +17,7 @@
1717
## Create-react-project
1818

1919
```
20-
$ npx create-react-webpack-ts-app your-app-name
20+
$ npx create-react-app-ts-webpack your-app-name
2121
```
2222

2323
## Check Installation

bin/generate-app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ const fs = require('fs');
77
if (process.argv.length < 3) {
88
console.log('You have to provide a name to your app.');
99
console.log('For example :');
10-
console.log(' npx create-react-ts-webpack-app my-app');
10+
console.log(' npx create-react-app-ts-webpack my-app');
1111
process.exit(1);
1212
}
1313

1414
const projectName = process.argv[2];
1515
const currentPath = process.cwd();
1616
const projectPath = path.join(currentPath, projectName);
17-
const GIT_REPO = 'https://github.com/vvs-kim/react-ts-webpack-boilerplate';
17+
const GIT_REPO = 'https://github.com/vvs-kim/create-react-app-ts-webpack';
1818

1919
if (projectName !== '.') {
2020
try {
@@ -41,7 +41,7 @@ async function main() {
4141
process.chdir(projectPath);
4242
}
4343

44-
console.log('Removing useless files');
44+
console.log('🗑 Removing useless files');
4545
execSync('npx rimraf ./bin');
4646
execSync('npx rimraf ./.git');
4747

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "create-react-webpack-ts-app",
3-
"version": "0.1.0",
4-
"description": "It automatically builds a react, webpack, and typescript working environment",
2+
"name": "create-react-app-ts-webpack",
3+
"version": "0.0.1",
4+
"description": "It automatically builds a react, typescript and webpack working environment",
55
"main": "index.tsx",
66
"bin": {
7-
"create-react-webpack-ts-app": "./bin/generate-app.js"
7+
"create-react-app-ts-webpack": "./bin/generate-app.js"
88
},
99
"license": "ISC",
10-
"homepage": "https://github.com/vvs-kim/react-webpack-ts-boilerplate",
10+
"homepage": "https://github.com/vvs-kim/create-react-app-ts-webpack",
1111
"author": {
1212
"name": "Wooseok Kim"
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/vvs-kim/react-webpack-ts-boilerplate"
16+
"url": "https://github.com/vvs-kim/create-react-app-ts-webpack"
1717
},
1818
"keywords": [
1919
"react",

0 commit comments

Comments
 (0)