@vidavidorra/create-project 2.0.98 → 2.0.100

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.
@@ -81,6 +81,7 @@ declare const schema: z.ZodObject<{
81
81
  }, {
82
82
  access: "public";
83
83
  }>>;
84
+ overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
84
85
  }, "strict", z.ZodTypeAny, {
85
86
  type: "module";
86
87
  description: string;
@@ -125,6 +126,7 @@ declare const schema: z.ZodObject<{
125
126
  publishConfig?: {
126
127
  access: "public";
127
128
  } | undefined;
129
+ overrides?: Record<string, unknown> | undefined;
128
130
  }, {
129
131
  type: "module";
130
132
  description: string;
@@ -169,6 +171,7 @@ declare const schema: z.ZodObject<{
169
171
  publishConfig?: {
170
172
  access: "public";
171
173
  } | undefined;
174
+ overrides?: Record<string, unknown> | undefined;
172
175
  }>;
173
176
  type PackageJson = z.infer<typeof schema>;
174
177
  declare class Package extends File {
@@ -219,6 +222,7 @@ declare class Package extends File {
219
222
  publishConfig?: {
220
223
  access: "public";
221
224
  } | undefined;
225
+ overrides?: Record<string, unknown> | undefined;
222
226
  };
223
227
  process(): this;
224
228
  private get gitHubUrl();
@@ -56,6 +56,7 @@ const schema = z
56
56
  .object({ access: z.literal('public') })
57
57
  .strict()
58
58
  .optional(),
59
+ overrides: z.record(z.unknown()).optional(),
59
60
  })
60
61
  .strict();
61
62
  class Package extends File {
@@ -85,6 +86,7 @@ class Package extends File {
85
86
  delete this._package.bin;
86
87
  delete this._package.dependencies;
87
88
  delete this._package.scripts.postinstall;
89
+ delete this._package.overrides;
88
90
  if (this._options.public) {
89
91
  delete this._package.private;
90
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidavidorra/create-project",
3
- "version": "2.0.98",
3
+ "version": "2.0.100",
4
4
  "private": false,
5
5
  "description": "Interactively create a GitHub project",
6
6
  "keywords": [
@@ -200,12 +200,12 @@
200
200
  ]
201
201
  },
202
202
  "dependencies": {
203
- "@inquirer/prompts": "5.0.5",
204
- "prettier": "3.2.5",
203
+ "@inquirer/prompts": "5.0.6",
204
+ "prettier": "3.3.2",
205
205
  "sort-package-json": "2.10.0",
206
206
  "typescript": "5.4.5",
207
207
  "validate-npm-package-name": "5.0.1",
208
- "yaml": "2.4.2",
208
+ "yaml": "2.4.5",
209
209
  "zod": "3.23.8"
210
210
  },
211
211
  "devDependencies": {
@@ -214,15 +214,15 @@
214
214
  "@semantic-release/changelog": "6.0.3",
215
215
  "@semantic-release/exec": "6.0.3",
216
216
  "@semantic-release/git": "10.0.1",
217
- "@types/node": "20.12.13",
217
+ "@types/node": "20.14.6",
218
218
  "@types/sinon": "17.0.3",
219
219
  "@types/validate-npm-package-name": "4.0.2",
220
220
  "@vidavidorra/commitlint-config": "7.0.6",
221
221
  "ava": "6.1.3",
222
- "c8": "9.1.0",
222
+ "c8": "10.1.2",
223
223
  "husky": "9.0.11",
224
- "lint-staged": "15.2.5",
225
- "semantic-release": "23.1.1",
224
+ "lint-staged": "15.2.7",
225
+ "semantic-release": "24.0.0",
226
226
  "sinon": "18.0.0",
227
227
  "xo": "0.58.0"
228
228
  },
@@ -231,5 +231,8 @@
231
231
  },
232
232
  "publishConfig": {
233
233
  "access": "public"
234
+ },
235
+ "overrides": {
236
+ "conventional-changelog-conventionalcommits": ">= 8.0.0"
234
237
  }
235
238
  }