create-template-project 1.5.3 → 1.5.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.
@@ -25,11 +25,11 @@
25
25
  "description": "A tiny JavaScript debugging utility modelled after Node.js core debugging technique."
26
26
  },
27
27
  "@commitlint/cli": {
28
- "version": "21.0.1",
28
+ "version": "21.0.2",
29
29
  "description": "Lint commit messages to ensure they follow conventional commits."
30
30
  },
31
31
  "@commitlint/config-conventional": {
32
- "version": "21.0.1",
32
+ "version": "21.0.2",
33
33
  "description": "Shareable commitlint config enforcing conventional commits."
34
34
  },
35
35
  "@types/debug": {
@@ -73,7 +73,7 @@
73
73
  "description": "A Vite-native unit test framework."
74
74
  },
75
75
  "commander": {
76
- "version": "14.0.3",
76
+ "version": "15.0.0",
77
77
  "description": "The complete solution for node.js command-line interfaces."
78
78
  },
79
79
  "cli-progress": {
@@ -149,7 +149,7 @@
149
149
  "description": "TypeScript-first schema validation with static type inference."
150
150
  },
151
151
  "react-router-dom": {
152
- "version": "7.15.1",
152
+ "version": "7.16.0",
153
153
  "description": "Declarative routing for React web applications."
154
154
  },
155
155
  "release-it": {
@@ -12,7 +12,7 @@ const overrides: Partial<NonNullable<typeof defaults.overrides>[number]>[] = [];
12
12
  const config = {
13
13
  ...defaults,
14
14
  rules: {...defaults.rules, ...rules},
15
- overrides: [...(defaults.overrides ?? []), ...overrides],
15
+ overrides: [...defaults.overrides, ...overrides],
16
16
  };
17
17
 
18
18
  export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-template-project",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "private": false,
5
5
  "description": "An ultra-modular, type-safe Node.js CLI tool used to scaffold new project templates (CLI, Webpage, Webapp, Fullstack) with best-practice configurations pre-installed.",
6
6
  "keywords": [
@@ -53,14 +53,14 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@clack/prompts": "1.4.0",
56
- "commander": "14.0.3",
56
+ "commander": "15.0.0",
57
57
  "debug": "4.4.3",
58
58
  "execa": "9.6.1",
59
59
  "zod": "4.4.3"
60
60
  },
61
61
  "devDependencies": {
62
- "@commitlint/cli": "21.0.1",
63
- "@commitlint/config-conventional": "21.0.1",
62
+ "@commitlint/cli": "21.0.2",
63
+ "@commitlint/config-conventional": "21.0.2",
64
64
  "@types/cli-progress": "3.11.6",
65
65
  "@types/debug": "4.1.13",
66
66
  "@types/node": "25.9.1",