@pplancq/create-react-app 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +25 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## @pplancq/create-react-app [1.2.1](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.2.0...@pplancq/create-react-app@1.2.1) (2024-04-16)
|
|
2
|
+
|
|
3
|
+
## @pplancq/create-react-app [1.2.0](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.1.0...@pplancq/create-react-app@1.2.0) (2024-03-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **create-react-app:** update documentation for create new project ([3af363f](https://github.com/pplancq/dev-tools/commit/3af363f5c3e436fdbf346af3f19a33d4f17cecac))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Reverts
|
|
12
|
+
|
|
13
|
+
* **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
|
|
14
|
+
|
|
1
15
|
## @pplancq/create-react-app [1.1.0](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.0.0...@pplancq/create-react-app@1.1.0) (2024-03-12)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -12,6 +12,12 @@ npm create @pplancq/react-app@latest <project_name>
|
|
|
12
12
|
|
|
13
13
|
or
|
|
14
14
|
|
|
15
|
+
```shell
|
|
16
|
+
npx @pplancq/create-react-app@latest <project_name>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
or
|
|
20
|
+
|
|
15
21
|
```shell
|
|
16
22
|
yarn create @pplancq/react-app@latest <project_name>
|
|
17
23
|
```
|
|
@@ -29,7 +35,25 @@ Replace <project_name> with the name of your new project.
|
|
|
29
35
|
This package also supports creating a new React project with Vite. If you prefer to use Vite instead of webpack, you can use the `--use-vite` option
|
|
30
36
|
|
|
31
37
|
```shell
|
|
32
|
-
npm create @pplancq/react-app@latest <project_name> --use-vite
|
|
38
|
+
npm create @pplancq/react-app@latest <project_name> -- --use-vite
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
or
|
|
42
|
+
|
|
43
|
+
```shell
|
|
44
|
+
npx @pplancq/create-react-app@latest <project_name> --use-vite
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
or
|
|
48
|
+
|
|
49
|
+
```shell
|
|
50
|
+
yarn create @pplancq/react-app@latest <project_name> --use-vite
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
or
|
|
54
|
+
|
|
55
|
+
```shell
|
|
56
|
+
pnpm create @pplancq/react-app@latest <project_name> --use-vite
|
|
33
57
|
```
|
|
34
58
|
|
|
35
59
|
## Template
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/create-react-app",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq create-react-app",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"commander": "^12.0.0"
|
|
24
24
|
},
|
|
25
25
|
"volta": {
|
|
26
|
-
"
|
|
27
|
-
"npm": "10.2.5"
|
|
26
|
+
"extends": "../../package.json"
|
|
28
27
|
}
|
|
29
28
|
}
|