create-template-project 1.6.0 → 1.6.2
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/dist/config/dependencies.json +6 -6
- package/dist/index.js +1 -4
- package/package.json +5 -5
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
3
|
"vite": {
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.2.0",
|
|
5
5
|
"description": "Native-ESM powered web dev build tool"
|
|
6
6
|
},
|
|
7
7
|
"@vitejs/plugin-react": {
|
|
8
|
-
"version": "6.0.
|
|
8
|
+
"version": "6.0.5",
|
|
9
9
|
"description": "The default Vite plugin for React projects."
|
|
10
10
|
},
|
|
11
11
|
"@vitest/browser": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"description": "TypeScript definitions for debug."
|
|
38
38
|
},
|
|
39
39
|
"@types/node": {
|
|
40
|
-
"version": "26.1.
|
|
40
|
+
"version": "26.1.2",
|
|
41
41
|
"description": "TypeScript definitions for Node.js."
|
|
42
42
|
},
|
|
43
43
|
"@vitest/coverage-v8": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"description": "Modern native git hooks made easy."
|
|
58
58
|
},
|
|
59
59
|
"oxlint": {
|
|
60
|
-
"version": "1.
|
|
60
|
+
"version": "1.76.0",
|
|
61
61
|
"description": "A JavaScript linter written in Rust."
|
|
62
62
|
},
|
|
63
63
|
"oxlint-tsgolint": {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"description": "TypeScript-specific rules for oxlint."
|
|
66
66
|
},
|
|
67
67
|
"oxfmt": {
|
|
68
|
-
"version": "0.
|
|
68
|
+
"version": "0.61.0",
|
|
69
69
|
"description": "High performance JavaScript / TypeScript formatter."
|
|
70
70
|
},
|
|
71
71
|
"typescript": {
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"description": "TypeScript-first schema validation with static type inference."
|
|
154
154
|
},
|
|
155
155
|
"react-router-dom": {
|
|
156
|
-
"version": "7.18.
|
|
156
|
+
"version": "7.18.2",
|
|
157
157
|
"description": "Declarative routing for React web applications."
|
|
158
158
|
},
|
|
159
159
|
"release-it": {
|
package/dist/index.js
CHANGED
|
@@ -53,10 +53,7 @@ var genericProcessor = (content, { opts }) => {
|
|
|
53
53
|
case "web-fullstack":
|
|
54
54
|
description = "A full-stack monorepo with an Express server and a React/MUI client.";
|
|
55
55
|
break;
|
|
56
|
-
case "web-app":
|
|
57
|
-
description = "A React application with MUI and TanStack Query.";
|
|
58
|
-
break;
|
|
59
|
-
default: break;
|
|
56
|
+
case "web-app": description = "A React application with MUI and TanStack Query.";
|
|
60
57
|
}
|
|
61
58
|
const pm = opts.packageManager;
|
|
62
59
|
const lockfileRules = pm === "pnpm" ? "package-lock.json\nyarn.lock" : pm === "yarn" ? "package-lock.json\npnpm-lock.yaml" : "yarn.lock\npnpm-lock.yaml";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-template-project",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An ultra-modular, type-safe Node.js CLI tool used to scaffold new project templates (CLI, Webpage, Web Widget, Webapp, Fullstack) with best-practice configurations pre-installed.",
|
|
6
6
|
"keywords": [
|
|
@@ -64,19 +64,19 @@
|
|
|
64
64
|
"@commitlint/config-conventional": "21.2.0",
|
|
65
65
|
"@types/cli-progress": "3.11.6",
|
|
66
66
|
"@types/debug": "4.1.13",
|
|
67
|
-
"@types/node": "26.1.
|
|
67
|
+
"@types/node": "26.1.2",
|
|
68
68
|
"@vitest/coverage-v8": "4.1.10",
|
|
69
69
|
"conventional-changelog": "8.1.0",
|
|
70
70
|
"conventional-changelog-angular": "9.2.1",
|
|
71
71
|
"eslint-plugin-regexp": "3.1.1",
|
|
72
72
|
"husky": "9.1.7",
|
|
73
|
-
"oxfmt": "0.
|
|
74
|
-
"oxlint": "1.
|
|
73
|
+
"oxfmt": "0.61.0",
|
|
74
|
+
"oxlint": "1.76.0",
|
|
75
75
|
"oxlint-tsgolint": "7.0.2001",
|
|
76
76
|
"release-it": "21.0.0",
|
|
77
77
|
"rimraf": "6.1.3",
|
|
78
78
|
"typescript": "7.0.2",
|
|
79
|
-
"vite": "8.
|
|
79
|
+
"vite": "8.2.0",
|
|
80
80
|
"vitest": "4.1.10"
|
|
81
81
|
},
|
|
82
82
|
"engines": {
|