@vidavidorra/create-project 4.5.43 → 4.5.45

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/README.md CHANGED
@@ -66,7 +66,7 @@ Please refer to the [Security Policy on GitHub](https://github.com/vidavidorra/c
66
66
 
67
67
  This project is licensed under the [GPLv3 license](https://www.gnu.org/licenses/gpl.html).
68
68
 
69
- Copyright © 2023-2025 Jeroen de Bruijn
69
+ Copyright © 2023-2026 Jeroen de Bruijn
70
70
 
71
71
  <details><summary>License notice</summary>
72
72
  <p>
@@ -36,11 +36,6 @@ declare const schema: z.ZodObject<{
36
36
  release: z.ZodRecord<z.ZodString, z.ZodUnknown>;
37
37
  ava: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
38
38
  c8: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
39
- overrides: z.ZodObject<{
40
- '@commitlint/config-conventional': z.ZodObject<{
41
- 'conventional-changelog-conventionalcommits': z.ZodLiteral<">=9.0.0">;
42
- }, z.core.$strict>;
43
- }, z.core.$strict>;
44
39
  dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
45
40
  devDependencies: z.ZodRecord<z.ZodString, z.ZodString>;
46
41
  engines: z.ZodObject<{
@@ -83,11 +78,6 @@ declare class Package extends File {
83
78
  commitlint: Record<string, unknown>;
84
79
  prettier: "@vidavidorra/prettier-config";
85
80
  release: Record<string, unknown>;
86
- overrides: {
87
- '@commitlint/config-conventional': {
88
- 'conventional-changelog-conventionalcommits': ">=9.0.0";
89
- };
90
- };
91
81
  devDependencies: Record<string, string>;
92
82
  engines: {
93
83
  node: ">=22";
@@ -36,11 +36,6 @@ const schema = z.strictObject({
36
36
  release: z.record(z.string(), z.unknown()),
37
37
  ava: z.record(z.string(), z.unknown()).optional(),
38
38
  c8: z.record(z.string(), z.unknown()).optional(),
39
- overrides: z.strictObject({
40
- '@commitlint/config-conventional': z.strictObject({
41
- 'conventional-changelog-conventionalcommits': z.literal('>=9.0.0'),
42
- })
43
- }),
44
39
  dependencies: z.record(z.string(), z.string()).optional(),
45
40
  devDependencies: z.record(z.string(), z.string()),
46
41
  engines: z.strictObject({ node: z.literal('>=22') }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidavidorra/create-project",
3
- "version": "4.5.43",
3
+ "version": "4.5.45",
4
4
  "private": false,
5
5
  "description": "Interactively create a GitHub project",
6
6
  "keywords": [
@@ -74,11 +74,6 @@
74
74
  "text-summary"
75
75
  ]
76
76
  },
77
- "overrides": {
78
- "@commitlint/config-conventional": {
79
- "conventional-changelog-conventionalcommits": ">=9.0.0"
80
- }
81
- },
82
77
  "dependencies": {
83
78
  "@inquirer/prompts": "8.2.1",
84
79
  "@vidavidorra/prettier-config": "1.0.6",
@@ -95,7 +90,7 @@
95
90
  "@types/node": "24.10.13",
96
91
  "@types/sinon": "21.0.0",
97
92
  "@types/validate-npm-package-name": "4.0.2",
98
- "@vidavidorra/commitlint-config": "7.1.12",
93
+ "@vidavidorra/commitlint-config": "7.1.14",
99
94
  "@vidavidorra/eslint-config": "1.0.3",
100
95
  "@vidavidorra/semantic-release-config": "1.0.4",
101
96
  "ava": "6.4.1",