commandby willem4130

update-app

Update dependencies, fix deprecations and warnings

Installs: 0
Used in: 1 repos
Updated: 2d ago
$npx ai-builder add command willem4130/update-app

Installs to .claude/commands/update-app.md

# Dependency Update & Deprecation Fix

## Step 1: Check for Updates

```bash
npm outdated
```

## Step 2: Update Dependencies

```bash
npm update
npm audit fix
```

## Step 3: Check for Deprecations & Warnings

Run clean install and read ALL output:

```bash
rm -rf node_modules package-lock.json
npm install
```

Look for:

- Deprecation warnings
- Security vulnerabilities
- Peer dependency warnings
- Breaking changes

## Step 4: Fix Issues

For each warning/deprecation:

1. Research the recommended replacement or fix
2. Update code/dependencies accordingly
3. Re-run installation
4. Verify no warnings remain

## Step 5: Run Quality Checks

```bash
npm run type-check
npm run lint
npm run format
npm run build
```

Fix ALL errors before completing.

## Step 6: Verify Clean Install

Ensure a fresh install works with ZERO warnings:

```bash
rm -rf node_modules package-lock.json
npm install
```

Confirm:

- ✅ No deprecation warnings
- ✅ No security vulnerabilities
- ✅ All dependencies resolve correctly
- ✅ Build succeeds

Quick Install

$npx ai-builder add command willem4130/update-app

Details

Type
command
Slug
willem4130/update-app
Created
6d ago