@pplancq/create-react-app 1.4.1 → 1.4.3
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 +13 -0
- package/index.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## @pplancq/create-react-app [1.4.3](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.4.2...@pplancq/create-react-app@1.4.3) (2025-01-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **react-template:** fix postinstall script ([330af19](https://github.com/pplancq/dev-tools/commit/330af1987fc8ab9a8f9b7125ef69da25897ddb07))
|
|
6
|
+
|
|
7
|
+
## @pplancq/create-react-app [1.4.2](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.4.1...@pplancq/create-react-app@1.4.2) (2025-01-06)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency chalk to v5 ([d954398](https://github.com/pplancq/dev-tools/commit/d954398e2b95b5a4edfdad42ff112636902a436b))
|
|
12
|
+
* **deps:** update dependency commander to v13 ([0b4a3d6](https://github.com/pplancq/dev-tools/commit/0b4a3d6ff1ce0f9229904776a88db0ec6e514789))
|
|
13
|
+
|
|
1
14
|
## @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
15
|
|
|
3
16
|
### Bug Fixes
|
package/index.js
CHANGED
|
@@ -85,8 +85,8 @@ const main = async () => {
|
|
|
85
85
|
const repoPackageJson = JSON.parse(readFileSync(resolve(repoDir, 'package.json'), { encoding: 'utf-8' }));
|
|
86
86
|
repoPackageJson.name = projectName;
|
|
87
87
|
repoPackageJson.description = projectName;
|
|
88
|
-
const { _prepare, ...scripts } = repoPackageJson.scripts;
|
|
89
|
-
repoPackageJson.scripts = { ...scripts, prepare: _prepare };
|
|
88
|
+
const { _prepare, _postinstall, ...scripts } = repoPackageJson.scripts;
|
|
89
|
+
repoPackageJson.scripts = { ...scripts, prepare: _prepare, postinstall: _postinstall };
|
|
90
90
|
repoPackageJson.version = '0.1.0';
|
|
91
91
|
|
|
92
92
|
delete repoPackageJson.author;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/create-react-app",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq create-react-app",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"react"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"chalk": "^5.
|
|
23
|
-
"commander": "^
|
|
22
|
+
"chalk": "^5.4.1",
|
|
23
|
+
"commander": "^13.0.0"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=20.12.2"
|