forked from Qortal/q-blog
24 lines
551 B
Markdown
24 lines
551 B
Markdown
# Phase 1 — Step 1 (Tiny PRs)
|
|
|
|
1. **Remove `@ts-nocheck`**
|
|
|
|
```bash
|
|
bash scripts/dev/phase1/tsnocheck-remove.sh
|
|
git push origin HEAD
|
|
```
|
|
|
|
2. **Alt text audit**
|
|
|
|
```bash
|
|
bash scripts/dev/phase1/list-imgs-missing-alt.sh
|
|
bash scripts/dev/phase1/alt-fix-todo.sh
|
|
# open the generated reports/*/alt-fix-todo.md and address each item
|
|
```
|
|
|
|
3. **MUI v4 imports → v5** (preview then apply)
|
|
```bash
|
|
bash scripts/dev/phase1/fix-mui-imports.sh --dry
|
|
bash scripts/dev/phase1/fix-mui-imports.sh
|
|
git push origin HEAD
|
|
```
|