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