launchts 1.0.2 → 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 +93 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,99 @@ 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
+
19
+ ## [1.0.3] - 2025-12-15
20
+
21
+ ### Changed
22
+
23
+ - Updated development dependencies
24
+ - `@eslint/js` from 9.39.1 to 9.39.2
25
+ - `eslint` from 9.39.1 to 9.39.2
26
+ - `typescript-eslint` from 8.48.1 to 8.49.0
27
+ - `@types/node` from 24.10.1 to 25.0.2
28
+
29
+ ## [1.0.2] - 2025-12-08
30
+
31
+ ### Changed
32
+
33
+ - Updated dev dependencies via Dependabot
34
+ - `eslint-config-prettier` from 9.1.2 to 10.1.8
35
+ - `husky` from 8.0.3 to 9.1.7
36
+ - Development dependencies group updates
37
+
38
+ ## [1.0.1] - 2025-12-02
39
+
40
+ ### Fixed
41
+
42
+ - Include `package-lock.json` in initial git commit
43
+ - Fix TypeScript ESM module error with nodemon by replacing `ts-node` with `tsx`
44
+
45
+ ### Changed
46
+
47
+ - Dev dependency: `tsx` replaces `ts-node` in generated projects
48
+ - Updated dev script to use `tsx` instead of `ts-node`
49
+
50
+ ## [1.0.0] - 2025-12-01
51
+
52
+ ### Added
53
+
54
+ - **Interactive CLI** with prompts for tool selection
55
+ - **Quick modes**: `--yes` (all tools) and `--default` (sensible defaults)
56
+ - **Modern TypeScript config**: ESNext target, NodeNext modules with ESM
57
+ - **Tool integrations**:
58
+ - ESLint with flat config (modern, non-deprecated)
59
+ - TypeScript ESLint v8+ (unified `typescript-eslint` package)
60
+ - Prettier with latest defaults (trailingComma: "all", printWidth: 80)
61
+ - Husky pre-commit hooks with lint-staged
62
+ - nodemon for dev auto-reload
63
+ - **Auto-generated README.md**: Adapts to selected tools with usage instructions
64
+ - **Git initialization** with optional first commit
65
+ - **Package manager detection**: npm, yarn, pnpm
66
+ - **Comprehensive test suite**: 39 tests with Vitest (unit, integration, e2e, messages)
67
+ - **Complete documentation**: README and CONTRIBUTING guides
68
+ - **CI/CD workflows**: GitHub Actions for quality checks and publishing
69
+ - **Dynamic version resolution**: No hardcoded dependency versions
70
+ - **Centralized messages**: All user-facing messages in `src/messages.ts` for maintainability
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
+
94
+ # Changelog
95
+
96
+ All notable changes to this project will be documented in this file.
97
+
98
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
100
+
8
101
  ## [1.0.2] - 2025-12-08
9
102
 
10
103
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "launchts",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Fast, interactive CLI to scaffold TypeScript projects",
5
5
  "bin": {
6
6
  "launchts": "dist/cli.js"
@@ -37,7 +37,7 @@
37
37
  "devDependencies": {
38
38
  "@eslint/js": "^9.39.1",
39
39
  "@types/fs-extra": "^11.0.4",
40
- "@types/node": "^24.10.1",
40
+ "@types/node": "^25.0.2",
41
41
  "eslint": "^9.39.1",
42
42
  "eslint-config-prettier": "^10.1.8",
43
43
  "globals": "^16.5.0",