Skip to content

Commit 07ee243

Browse files
committed
docs: Remove hardcoded version numbers and fix grammar
- Remove ts-morph version numbers that will get outdated - Remove copyright year (simpler, doesn't need updating) - Fix grammar: "Defined if multi line" → "Defines if multiline" - Update CLAUDE.md: "TypeScript 5.7" → "latest TypeScript"
1 parent 666535c commit 07ee243

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ This project continues the legacy of [TypeScript Hero](https://github.com/buehle
3737
- `Mini TS Hero: Organize imports in folder` - Organize all files in selected folder (context menu)
3838
- `Mini TS Hero: Check for configuration conflicts` - Detect if multiple tools would organize imports
3939
- `Mini TS Hero: Toggle legacy mode` - Switch between modern and legacy behavior
40-
- Modern implementation using ts-morph (v27)
40+
- Modern implementation using ts-morph
4141
- Built with esbuild for optimal performance
4242

4343
#### Notes
4444

4545
[TypeScript Hero](https://github.com/buehler/typescript-hero) by Christoph Bühler was well-known for its import organizer, but it went unmaintained. We picked it up, modernized everything, and added new features.
4646

4747
**Technology improvements:**
48-
- Replaced deprecated `typescript-parser` with modern `ts-morph`
48+
- Replaced deprecated `typescript-parser` with modern ts-morph
4949
- Simplified architecture (removed InversifyJS DI container)
5050
- Native VSCode OutputChannel logging (replaced winston)
5151
- Modern esbuild bundling

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
Extract and modernize the "Sort and organize your imports" feature with:
2323
-**Comprehensive backward compatibility** with TypeScript Hero settings
24-
-**Modern 2025 tech stack** (ts-morph, esbuild, TypeScript 5.7)
24+
-**Modern tech stack** (ts-morph, esbuild, latest TypeScript)
2525
-**No dependencies on deprecated libraries** (typescript-parser is 7 years old!)
2626
-**Simplified architecture** (no InversifyJS DI container overkill)
2727

README-for-developers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ mini-typescript-hero/
216216

217217
### Key Design Decisions
218218

219-
- **ts-morph v27** instead of deprecated `typescript-parser`
219+
- **ts-morph** instead of deprecated `typescript-parser`
220220
- **Direct instantiation** instead of InversifyJS DI container
221221
- **OutputChannel** logging instead of winston
222222
- **esbuild** bundling instead of tsc alone

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ This extension continues [TypeScript Hero](https://github.com/buehler/typescript
256256

257257
## License
258258

259-
MIT License — Copyright (c) 2025-2026 [Angular.Schule](https://angular.schule) (by Johannes Hoppe)
259+
MIT License — Copyright (c) [Angular.Schule](https://angular.schule) (by Johannes Hoppe)
260260

261261
Original work Copyright (c) Christoph Bühler
262262

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"miniTypescriptHero.imports.multiLineTrailingComma": {
135135
"type": "boolean",
136136
"default": true,
137-
"description": "Defined if multi line imports contain the last trailing comma.",
137+
"description": "Defines if multiline imports contain the last trailing comma.",
138138
"scope": "resource"
139139
},
140140
"miniTypescriptHero.imports.organizeOnSave": {

0 commit comments

Comments
 (0)