launchts 1.0.3 → 1.0.4

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