@pplancq/create-react-app 1.2.1 → 1.4.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## @pplancq/create-react-app [1.4.0](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.3.0...@pplancq/create-react-app@1.4.0) (2024-08-27)
2
+
3
+ ### Features
4
+
5
+ * **eslint-config:** replace eslint-plugin-vitest recommended config with specific rules ([1c8cf9c](https://github.com/pplancq/dev-tools/commit/1c8cf9cce9d6e9df414b73a7cd2a9f7d4019fdcb))
6
+
7
+ ## @pplancq/create-react-app [1.3.0](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.2.1...@pplancq/create-react-app@1.3.0) (2024-05-06)
8
+
9
+
10
+ ### Features
11
+
12
+ * **dev-tools:** add minimal nodejs versions for each package ([0d8447a](https://github.com/pplancq/dev-tools/commit/0d8447a6f4e26ff9cb28baac8434020156d5dac0))
13
+
1
14
  ## @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
15
 
3
16
  ## @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)
package/README.md CHANGED
@@ -35,25 +35,25 @@ Replace <project_name> with the name of your new project.
35
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
36
36
 
37
37
  ```shell
38
- npm create @pplancq/react-app@latest <project_name> -- --use-vite
38
+ npm create @pplancq/react-app@latest --use-vite < project_name > --
39
39
  ```
40
40
 
41
41
  or
42
42
 
43
43
  ```shell
44
- npx @pplancq/create-react-app@latest <project_name> --use-vite
44
+ npx @pplancq/create-react-app@latest < project_name > --use-vite
45
45
  ```
46
46
 
47
47
  or
48
48
 
49
49
  ```shell
50
- yarn create @pplancq/react-app@latest <project_name> --use-vite
50
+ yarn create @pplancq/react-app@latest < project_name > --use-vite
51
51
  ```
52
52
 
53
53
  or
54
54
 
55
55
  ```shell
56
- pnpm create @pplancq/react-app@latest <project_name> --use-vite
56
+ pnpm create @pplancq/react-app@latest < project_name > --use-vite
57
57
  ```
58
58
 
59
59
  ## Template
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pplancq/create-react-app",
3
- "version": "1.2.1",
3
+ "version": "1.4.0",
4
4
  "license": "MIT",
5
5
  "description": "pplancq create-react-app",
6
6
  "author": "pplancq <paul.plancq@outlook.fr>",
@@ -20,7 +20,10 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "chalk": "^5.3.0",
23
- "commander": "^12.0.0"
23
+ "commander": "^12.1.0"
24
+ },
25
+ "engines": {
26
+ "node": ">=20.12.2"
24
27
  },
25
28
  "volta": {
26
29
  "extends": "../../package.json"