@pplancq/create-react-app 1.3.0 → 1.4.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 +12 -0
- package/README.md +4 -4
- package/index.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @pplancq/create-react-app [1.4.1](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.4.0...@pplancq/create-react-app@1.4.1) (2024-11-18)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **create-react-app:** fix change version in package.json ([85cad87](https://github.com/pplancq/dev-tools/commit/85cad879a03490e51a24a09396cae0301a55633f))
|
|
6
|
+
|
|
7
|
+
## @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)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **eslint-config:** replace eslint-plugin-vitest recommended config with specific rules ([1c8cf9c](https://github.com/pplancq/dev-tools/commit/1c8cf9cce9d6e9df414b73a7cd2a9f7d4019fdcb))
|
|
12
|
+
|
|
1
13
|
## @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)
|
|
2
14
|
|
|
3
15
|
|
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> --
|
|
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/index.js
CHANGED
|
@@ -87,6 +87,7 @@ const main = async () => {
|
|
|
87
87
|
repoPackageJson.description = projectName;
|
|
88
88
|
const { _prepare, ...scripts } = repoPackageJson.scripts;
|
|
89
89
|
repoPackageJson.scripts = { ...scripts, prepare: _prepare };
|
|
90
|
+
repoPackageJson.version = '0.1.0';
|
|
90
91
|
|
|
91
92
|
delete repoPackageJson.author;
|
|
92
93
|
delete repoPackageJson.repository;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/create-react-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq create-react-app",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"chalk": "^5.3.0",
|
|
23
|
-
"commander": "^12.
|
|
23
|
+
"commander": "^12.1.0"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=20.12.2"
|