Skip to content

Commit 705237c

Browse files
committed
docs: add demo gif to README, exclude from VSIX
1 parent 85b5f57 commit 705237c

4 files changed

Lines changed: 11 additions & 12 deletions

File tree

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ tests/**
3434
# Design files
3535
logo.svg
3636
logo.ai
37+
*.gif
3738

3839
# Source maps (keep for production debugging)
3940
# **/*.map

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
# Mini TypeScript Hero – Small hero. Big cleanup!
66

7+
<div align="center">
8+
<img src="https://raw.githubusercontent.com/angular-schule/mini-typescript-hero/master/demo.gif" alt="Mini TypeScript Hero Demo" width="800">
9+
</div>
10+
711
**One keystroke. One click. Hundreds of files organized.** — A lightweight, modern VSCode extension that sorts and organizes your TypeScript/JavaScript imports.
812

913
**Read the full story:** [TypeScript Hero is dead (is yet another VS Code extension gone forever?)](https://angular.schule/blog/2026-03-mini-typescript-hero)

demo.gif

1.3 MB
Loading

tests/manual/demo-for-video.ts

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
// Demo file for video - shows the full power of Mini TypeScript Hero
2-
// Press Ctrl+Alt+O (or Cmd+Alt+O on macOS) to organize imports
3-
4-
import { UserDetail } from './components/user-detail';
5-
import { Component } from '@angular/core';
6-
import { UnusedService } from './services/unused';
7-
import {Router} from "@angular/router"
1+
import { Component, inject, OnInit } from '@angular/core';
2+
import { Router } from '@angular/router';
3+
import { of } from 'rxjs';
84
import { map, switchMap } from 'rxjs/operators';
9-
import {OnInit, inject} from "@angular/core"
5+
106
import { BookList } from './components/book-list';
11-
import {of} from "rxjs"
7+
import { UserDetail } from './components/user-detail';
128

139
@Component({
1410
selector: 'app-demo',
@@ -40,6 +36,4 @@ export class DemoComponent implements OnInit {
4036
private transform(value: string) {
4137
return of(value);
4238
}
43-
}
44-
45-
// Note: UnusedService is imported but never used - it will be removed!
39+
}

0 commit comments

Comments
 (0)