@pplancq/create-react-app 1.1.0 → 1.2.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +25 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## @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)
2
+
3
+
4
+ ### Features
5
+
6
+ * **create-react-app:** update documentation for create new project ([3af363f](https://github.com/pplancq/dev-tools/commit/3af363f5c3e436fdbf346af3f19a33d4f17cecac))
7
+
8
+
9
+ ### Reverts
10
+
11
+ * **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
12
+
1
13
  ## @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
14
 
3
15
 
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.0",
3
+ "version": "1.2.0",
4
4
  "license": "MIT",
5
5
  "description": "pplancq create-react-app",
6
6
  "author": "pplancq <paul.plancq@outlook.fr>",