launchts 1.0.3 → 1.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.5] - 2025-12-30
9
+
10
+ ### Changed
11
+
12
+ - Updated development dependencies
13
+ - `typescript-eslint` from 8.50.0 to 8.50.1
14
+
15
+ ## [1.0.4] - 2025-12-22
16
+
17
+ ### Changed
18
+
19
+ - Updated production dependencies
20
+ - `fs-extra` from 11.3.2 to 11.3.3
21
+ - Updated development dependencies
22
+ - `@types/node` from 25.0.2 to 25.0.3
23
+ - `typescript-eslint` from 8.49.0 to 8.50.0
24
+ - `vitest` updated to latest
25
+
8
26
  ## [1.0.3] - 2025-12-15
9
27
 
10
28
  ### Changed
@@ -58,6 +76,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
58
76
  - **Dynamic version resolution**: No hardcoded dependency versions
59
77
  - **Centralized messages**: All user-facing messages in `src/messages.ts` for maintainability
60
78
 
79
+ ## [1.0.0] - 2025-12-01
80
+
81
+ ### Added
82
+
83
+ - **Interactive CLI** with prompts for tool selection
84
+ - **Quick modes**: `--yes` (all tools) and `--default` (sensible defaults)
85
+ - **Modern TypeScript config**: ESNext target, NodeNext modules with ESM
86
+ - **Tool integrations**:
87
+ - ESLint with flat config (modern, non-deprecated)
88
+ - TypeScript ESLint v8+ (unified `typescript-eslint` package)
89
+ - Prettier with latest defaults (trailingComma: "all", printWidth: 80)
90
+ - Husky pre-commit hooks with lint-staged
91
+ - nodemon for dev auto-reload
92
+ - **Auto-generated README.md**: Adapts to selected tools with usage instructions
93
+ - **Git initialization** with optional first commit
94
+ - **Package manager detection**: npm, yarn, pnpm
95
+ - **Comprehensive test suite**: 39 tests with Vitest (unit, integration, e2e, messages)
96
+ - **Complete documentation**: README and CONTRIBUTING guides
97
+ - **CI/CD workflows**: GitHub Actions for quality checks and publishing
98
+ - **Dynamic version resolution**: No hardcoded dependency versions
99
+ - **Centralized messages**: All user-facing messages in `src/messages.ts` for maintainability
100
+
61
101
  # Changelog
62
102
 
63
103
  All notable changes to this project will be documented in this file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "launchts",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Fast, interactive CLI to scaffold TypeScript projects",
5
5
  "bin": {
6
6
  "launchts": "dist/cli.js"