create-template-project 1.5.13 → 1.5.14
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
|
@@ -20,7 +20,7 @@ pnpm dlx create-template-project interactive
|
|
|
20
20
|
|
|
21
21
|
## ✨ Features
|
|
22
22
|
|
|
23
|
-
- **Modern Tech Stack:** All templates come with `commitlint`, `husky`, `vitest`, `oxlint`, `oxfmt`, and `typescript` (strict mode).
|
|
23
|
+
- **Modern Tech Stack:** All templates come with `commitlint`, `husky`, `vitest`, `oxlint`, `oxfmt`, `conventional-changelog` with the Angular preset, and `typescript` (strict mode).
|
|
24
24
|
- **Enhanced Oxlint Setup:** Linting is driven by a shared, type-aware Oxlint configuration (`oxc.config.ts` + `oxlint.config.ts`) so template updates keep rule behavior consistent.
|
|
25
25
|
- **Interactive CLI:** Prompts you for project details if CLI arguments are missing, using `@clack/prompts`.
|
|
26
26
|
- **🔄 Update Mode:** Detects existing projects and offers a safe update path.
|
|
@@ -45,9 +45,13 @@
|
|
|
45
45
|
"description": "V8 coverage provider for Vitest."
|
|
46
46
|
},
|
|
47
47
|
"conventional-changelog": {
|
|
48
|
-
"version": "
|
|
48
|
+
"version": "8.0.0",
|
|
49
49
|
"description": "Generate a changelog from git metadata."
|
|
50
50
|
},
|
|
51
|
+
"conventional-changelog-angular": {
|
|
52
|
+
"version": "9.1.0",
|
|
53
|
+
"description": "Angular preset for conventional-changelog."
|
|
54
|
+
},
|
|
51
55
|
"husky": {
|
|
52
56
|
"version": "9.1.7",
|
|
53
57
|
"description": "Modern native git hooks made easy."
|
|
@@ -30,7 +30,7 @@ pnpm release -- patch # or minor / major
|
|
|
30
30
|
This will automatically:
|
|
31
31
|
1. Run the CI suite (`pnpm run ci`).
|
|
32
32
|
2. Bump the version in `package.json`.
|
|
33
|
-
3. Update the `CHANGELOG.md
|
|
33
|
+
3. Update the `CHANGELOG.md` using `conventional-changelog` with the Angular preset.
|
|
34
34
|
4. Commit, tag, and push the changes.
|
|
35
35
|
5. Create a GitHub release with auto-generated notes.
|
|
36
36
|
6. Publish to npm (if configured).
|
|
@@ -39,4 +39,3 @@ This will automatically:
|
|
|
39
39
|
1. Set `"private": false` in `package.json`.
|
|
40
40
|
2. Set `"publish": true` in `.release-it.json`.
|
|
41
41
|
3. Ensure you have the necessary `NPM_TOKEN` configured.
|
|
42
|
-
|
|
@@ -45,4 +45,4 @@ This project is built using **Vite 8** for high-performance development and bund
|
|
|
45
45
|
- **oxlint**: Extremely fast JavaScript/TypeScript linter. Default rules live in `oxc.config.ts` (managed); customize overrides in `oxlint.config.ts`.
|
|
46
46
|
- **oxfmt**: High performance JavaScript / TypeScript formatter. Default settings live in `oxc.config.ts` (managed); customize overrides in `oxfmt.config.ts`.
|
|
47
47
|
- **Husky & Commitlint**: Ensuring high-quality commit messages.
|
|
48
|
-
- **Conventional Changelog**: Automated changelog generation.
|
|
48
|
+
- **Conventional Changelog**: Automated changelog generation with the Angular preset.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-template-project",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.14",
|
|
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": [
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@types/debug": "4.1.13",
|
|
66
66
|
"@types/node": "26.0.1",
|
|
67
67
|
"@vitest/coverage-v8": "4.1.9",
|
|
68
|
-
"conventional-changelog": "
|
|
69
|
-
"conventional-changelog-angular": "
|
|
68
|
+
"conventional-changelog": "8.0.0",
|
|
69
|
+
"conventional-changelog-angular": "9.1.0",
|
|
70
70
|
"eslint-plugin-regexp": "3.1.1",
|
|
71
71
|
"husky": "9.1.7",
|
|
72
72
|
"oxfmt": "0.56.0",
|