launchts 1.0.4 → 1.0.6
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/CHANGELOG.md +29 -129
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,107 +5,49 @@ 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.
|
|
8
|
+
## [1.0.6] - 2026-01-05
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
-
- Updated production dependencies
|
|
13
|
-
- `fs-extra` from 11.3.2 to 11.3.3
|
|
14
12
|
- Updated development dependencies
|
|
15
|
-
-
|
|
16
|
-
- `
|
|
17
|
-
- `vitest` updated to latest
|
|
13
|
+
- `typescript-eslint` from 8.50.1 to 8.51.0
|
|
14
|
+
- `globals` from 16.5.0 to 17.0.0 (major version with new environments: audioWorklet, paintWorklet, sharedWorker, bunBuiltin, denoBuiltin)
|
|
18
15
|
|
|
19
|
-
## [1.0.
|
|
16
|
+
## [1.0.5] - 2025-12-30
|
|
20
17
|
|
|
21
18
|
### Changed
|
|
22
19
|
|
|
23
20
|
- Updated development dependencies
|
|
24
|
-
-
|
|
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
|
|
21
|
+
- `typescript-eslint` from 8.50.0 to 8.50.1
|
|
28
22
|
|
|
29
|
-
## [1.0.
|
|
23
|
+
## [1.0.4] - 2025-12-22
|
|
30
24
|
|
|
31
25
|
### Changed
|
|
32
26
|
|
|
33
|
-
- Updated
|
|
34
|
-
- `eslint
|
|
35
|
-
- `
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
## [1.0.1] - 2025-12-02
|
|
39
|
-
|
|
40
|
-
### Fixed
|
|
27
|
+
- Updated development dependencies
|
|
28
|
+
- `typescript-eslint` from 8.49.0 to 8.50.0
|
|
29
|
+
- `vitest` from 4.0.5 to 4.0.14
|
|
30
|
+
- `@types/node` from 24.10.1 to 25.0.3
|
|
31
|
+
- `fs-extra` from 11.3.2 to 11.3.3
|
|
41
32
|
|
|
42
|
-
|
|
43
|
-
- Fix TypeScript ESM module error with nodemon by replacing `ts-node` with `tsx`
|
|
33
|
+
## [1.0.3] - 2025-12-16
|
|
44
34
|
|
|
45
35
|
### Changed
|
|
46
36
|
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
|
|
50
|
-
|
|
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).
|
|
37
|
+
- Updated development dependencies
|
|
38
|
+
- `@eslint/js` from 9.39.1 to 9.39.2
|
|
39
|
+
- `eslint` from 9.39.1 to 9.39.2
|
|
40
|
+
- `typescript-eslint` from 8.48.1 to 8.49.0
|
|
100
41
|
|
|
101
42
|
## [1.0.2] - 2025-12-08
|
|
102
43
|
|
|
103
44
|
### Changed
|
|
104
45
|
|
|
105
|
-
- Updated
|
|
106
|
-
- `
|
|
107
|
-
- `
|
|
108
|
-
-
|
|
46
|
+
- Updated development dependencies
|
|
47
|
+
- `prettier` from 3.7.3 to 3.7.4
|
|
48
|
+
- `typescript-eslint` from 8.18.0 to 8.48.1
|
|
49
|
+
- `typescript` from 5.7.3 to 5.9.3
|
|
50
|
+
- Package maintenance and security updates
|
|
109
51
|
|
|
110
52
|
## [1.0.1] - 2025-12-02
|
|
111
53
|
|
|
@@ -114,57 +56,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
114
56
|
- Include `package-lock.json` in initial git commit
|
|
115
57
|
- Fix TypeScript ESM module error with nodemon by replacing `ts-node` with `tsx`
|
|
116
58
|
|
|
117
|
-
### Changed
|
|
118
|
-
|
|
119
|
-
- Dev dependency: `tsx` replaces `ts-node` in generated projects
|
|
120
|
-
- Updated dev script to use `tsx` instead of `ts-node`
|
|
121
|
-
|
|
122
59
|
## [1.0.0] - 2025-12-01
|
|
123
60
|
|
|
124
61
|
### Added
|
|
125
62
|
|
|
126
|
-
-
|
|
127
|
-
-
|
|
128
|
-
-
|
|
129
|
-
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
- nodemon for dev auto-reload
|
|
135
|
-
- **Auto-generated README.md**: Adapts to selected tools with usage instructions
|
|
136
|
-
- **Git initialization** with optional first commit
|
|
137
|
-
- **Package manager detection**: npm, yarn, pnpm
|
|
138
|
-
- **Comprehensive test suite**: 39 tests with Vitest (unit, integration, e2e, messages)
|
|
139
|
-
- **Complete documentation**: README and CONTRIBUTING guides
|
|
140
|
-
- **CI/CD workflows**: GitHub Actions for quality checks and publishing
|
|
141
|
-
- **Dynamic version resolution**: No hardcoded dependency versions
|
|
142
|
-
- **Centralized messages**: All user-facing messages in `src/messages.ts` for maintainability
|
|
143
|
-
|
|
144
|
-
### Features
|
|
145
|
-
|
|
146
|
-
- Project scaffolding with configurable options
|
|
147
|
-
- Smart defaults for rapid prototyping
|
|
148
|
-
- Auto-format and lint staged files before commits
|
|
149
|
-
- Type-safe configuration with strict TypeScript
|
|
150
|
-
- Cross-platform support (Windows, macOS, Linux)
|
|
151
|
-
- Parallel file I/O for optimal performance
|
|
152
|
-
- Silent mode for check commands (no false error logs)
|
|
153
|
-
|
|
154
|
-
### Developer Experience
|
|
155
|
-
|
|
156
|
-
- Zero configuration needed to start
|
|
157
|
-
- Sensible defaults that just work
|
|
158
|
-
- Clear error messages and helpful tips
|
|
159
|
-
- Fully tested and production-ready
|
|
160
|
-
- Modern tooling and best practices (2024-2025)
|
|
161
|
-
|
|
162
|
-
### Code Quality
|
|
163
|
-
|
|
164
|
-
- **Modular architecture**: README generation split into 6 focused functions
|
|
165
|
-
- **Type safety**: Strict TypeScript with no implicit `any` types
|
|
166
|
-
- **Performance optimized**: Parallel I/O operations (Promise.all)
|
|
167
|
-
- **Clean codebase**: No dead code, all imports used
|
|
168
|
-
- **Comprehensive testing**: Unit tests for messages, E2E workflows, edge cases
|
|
169
|
-
|
|
170
|
-
[1.0.0]: https://github.com/Jszigeti/launchts/releases/tag/v1.0.0
|
|
63
|
+
- Initial release
|
|
64
|
+
- Interactive CLI for TypeScript project scaffolding
|
|
65
|
+
- Support for npm, yarn, pnpm, and bun
|
|
66
|
+
- Optional ESLint and Prettier configuration
|
|
67
|
+
- Optional Husky and lint-staged setup
|
|
68
|
+
- Optional nodemon for development
|
|
69
|
+
- Optional git initialization
|
|
70
|
+
- TypeScript 5.7+ with modern ESM configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "launchts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Fast, interactive CLI to scaffold TypeScript projects",
|
|
5
5
|
"bin": {
|
|
6
6
|
"launchts": "dist/cli.js"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@types/node": "^25.0.2",
|
|
41
41
|
"eslint": "^9.39.1",
|
|
42
42
|
"eslint-config-prettier": "^10.1.8",
|
|
43
|
-
"globals": "^
|
|
43
|
+
"globals": "^17.0.0",
|
|
44
44
|
"husky": "^9.1.7",
|
|
45
45
|
"lint-staged": "^16.2.7",
|
|
46
46
|
"nodemon": "^3.1.11",
|