@pplancq/create-react-app 1.4.3 → 1.4.5

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/index.js +1 -0
  3. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## @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)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **create-react-app:** remove engines field from package.json ([ec33b6b](https://github.com/pplancq/dev-tools/commit/ec33b6b803e6a34f14f7eaedc70485af3249cb9b))
6
+
7
+ ## @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)
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency commander to v13 ([9e94956](https://github.com/pplancq/dev-tools/commit/9e949560000970854e0906dd2c19fe8d86198b00))
12
+
1
13
  ## @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
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",
3
+ "version": "1.4.5",
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": "./index.js",
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": "^13.0.0"
25
+ "commander": "^13.1.0"
24
26
  },
25
27
  "engines": {
26
28
  "node": ">=20.12.2"