@pplancq/create-react-app 1.4.4 → 1.4.6
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/index.js +1 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @pplancq/create-react-app [1.4.6](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.4.5...@pplancq/create-react-app@1.4.6) (2025-05-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **deps:** update dependency commander to v14 ([c6f2a57](https://github.com/pplancq/dev-tools/commit/c6f2a5721309220f8ee75eccbdf5bce51d122160))
|
|
6
|
+
|
|
7
|
+
## @pplancq/create-react-app [1.4.5](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.4.4...@pplancq/create-react-app@1.4.5) (2025-04-23)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **create-react-app:** remove engines field from package.json ([ec33b6b](https://github.com/pplancq/dev-tools/commit/ec33b6b803e6a34f14f7eaedc70485af3249cb9b))
|
|
12
|
+
|
|
1
13
|
## @pplancq/create-react-app [1.4.4](https://github.com/pplancq/dev-tools/compare/@pplancq/create-react-app@1.4.3...@pplancq/create-react-app@1.4.4) (2025-01-27)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/index.js
CHANGED
|
@@ -93,6 +93,7 @@ const main = async () => {
|
|
|
93
93
|
delete repoPackageJson.repository;
|
|
94
94
|
delete repoPackageJson.bugs;
|
|
95
95
|
delete repoPackageJson.keywords;
|
|
96
|
+
delete repoPackageJson.engines;
|
|
96
97
|
|
|
97
98
|
writeFileSync(resolve(repoDir, 'package.json'), JSON.stringify(repoPackageJson, null, 2), { encoding: 'utf-8' });
|
|
98
99
|
rmSync(`${repoDir}/node_modules`, { recursive: true });
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/create-react-app",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq create-react-app",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/pplancq/dev-tools",
|
|
9
|
+
"url": "git+https://github.com/pplancq/dev-tools.git",
|
|
10
10
|
"directory": "packages/create-react-app"
|
|
11
11
|
},
|
|
12
|
-
"bin":
|
|
12
|
+
"bin": {
|
|
13
|
+
"create-react-app": "index.js"
|
|
14
|
+
},
|
|
13
15
|
"bugs": {
|
|
14
16
|
"url": "https://github.com/pplancq/dev-tools/issues"
|
|
15
17
|
},
|
|
@@ -20,7 +22,7 @@
|
|
|
20
22
|
],
|
|
21
23
|
"dependencies": {
|
|
22
24
|
"chalk": "^5.4.1",
|
|
23
|
-
"commander": "^
|
|
25
|
+
"commander": "^14.0.0"
|
|
24
26
|
},
|
|
25
27
|
"engines": {
|
|
26
28
|
"node": ">=20.12.2"
|