Update packages to latest versions and update Memory Bank documentation

This commit is contained in:
TheMaddax 2025-12-15 08:34:06 -07:00
parent 18f1ea59fd
commit 2f42fb8fc3
8 changed files with 3173 additions and 1608 deletions

View file

@ -1,12 +1,12 @@
# Active Context - Current Work # Active Context - Current Work
## What We're Working On Now ## What We're Working On Now
**Headshot Replacement Task**: ✅ FULLY COMPLETED - Successfully replaced Mark's headshot on about page: **Package Update Task**: ✅ FULLY COMPLETED - Successfully updated all web packages to latest versions:
- Replaced old portrait headshot with new 2025 landscape headshot - Updated 22 packages including Next.js 15→16, React 19.0→19.2, Tailwind CSS 3→4
- Updated CSS layout to accommodate aspect ratio change (2:3 → 3:2) - Fixed Tailwind CSS v4 breaking changes (added @tailwindcss/postcss plugin)
- Renamed files for consistent naming convention - Updated PostCSS configuration for Tailwind v4 compatibility
- Preserved original as backup - Verified local build success
- Updated image dimensions and alt text - Rebuilt Docker container with updated packages
## Recent Headshot Update Details ## Recent Headshot Update Details
- **File Management**: - **File Management**:

View file

@ -66,6 +66,13 @@
- **Potential Consolidation**: Could refactor to use single email utility - **Potential Consolidation**: Could refactor to use single email utility
## Recent Accomplishments ## Recent Accomplishments
- ✅ **Package Updates (Latest)**: Successfully updated all web packages to latest versions
- Updated 22 packages: Next.js 15.0.4→16.0.10, React 19.0.0→19.2.3, Tailwind CSS 3.4.16→4.1.18
- Fixed Tailwind CSS v4 breaking changes by installing @tailwindcss/postcss plugin
- Updated PostCSS configuration to use '@tailwindcss/postcss' instead of 'tailwindcss'
- Verified local build success with all updated packages
- Rebuilt Docker container successfully (14 minutes build time)
- All major dependencies now on latest stable versions
- ✅ **Headshot Replacement**: Successfully updated Mark's headshot on about page - ✅ **Headshot Replacement**: Successfully updated Mark's headshot on about page
- Replaced old portrait (3648x5472) with new 2025 landscape headshot (2000x1333) - Replaced old portrait (3648x5472) with new 2025 landscape headshot (2000x1333)
- Updated CSS layout from `aspect-[2/3]` to `aspect-[3/2]` for proper display - Updated CSS layout from `aspect-[2/3]` to `aspect-[3/2]` for proper display

View file

@ -3,14 +3,15 @@
## Core Technologies ## Core Technologies
### Frontend Stack ### Frontend Stack
- **Next.js**: 15.0.4 (React framework with App Router) - **Next.js**: 16.0.10 (React framework with App Router)
- **React**: 19.0.0 (UI library) - **React**: 19.2.3 (UI library)
- **TypeScript**: Type-safe JavaScript - **TypeScript**: 5.9.3 (Type-safe JavaScript)
- **Tailwind CSS**: Utility-first CSS framework - **Tailwind CSS**: 4.1.18 (Utility-first CSS framework)
- **Framer Motion**: Animation library - **@tailwindcss/postcss**: 4.1.18 (PostCSS plugin for Tailwind v4)
- **HeadlessUI**: Unstyled UI components - **Framer Motion**: 12.23.26 (Animation library)
- **Lucide React**: Icon library - **HeadlessUI**: 2.2.9 (Unstyled UI components)
- **React Icons**: Additional icon library - **Lucide React**: 0.561.0 (Icon library)
- **React Icons**: 5.5.0 (Additional icon library)
### Backend Stack ### Backend Stack
- **Next.js API Routes**: Server-side API endpoints - **Next.js API Routes**: Server-side API endpoints

3
next-env.d.ts vendored
View file

@ -1,5 +1,6 @@
/// <reference types="next" /> /// <reference types="next" />
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View file

@ -10,29 +10,30 @@
"lint": "next lint" "lint": "next lint"
}, },
"dependencies": { "dependencies": {
"@emotion/is-prop-valid": "^1.3.1", "@emotion/is-prop-valid": "^1.4.0",
"@headlessui/react": "^2.2.0", "@headlessui/react": "^2.2.9",
"@types/nodemailer": "^6.4.17", "@types/nodemailer": "^7.0.4",
"@upstash/redis": "^1.34.3", "@upstash/redis": "^1.35.8",
"framer-motion": "11.13.3", "framer-motion": "12.23.26",
"lucide-react": "^0.468.0", "lucide-react": "^0.561.0",
"next": "15.0.4", "next": "16.0.10",
"nodemailer": "^6.9.16", "nodemailer": "^7.0.11",
"react": "19.0.0", "react": "19.2.3",
"react-dom": "19.0.0", "react-dom": "19.2.3",
"react-icons": "^5.4.0" "react-icons": "^5.5.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^22.10.1", "@tailwindcss/postcss": "^4.1.18",
"@types/react": "^19.0.1", "@types/node": "^25.0.2",
"@types/react-dom": "^19.0.2", "@types/react": "^19.2.7",
"@typescript-eslint/parser": "^8.18.0", "@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20", "@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.16.0", "autoprefixer": "^10.4.23",
"eslint-config-next": "15.0.4", "eslint": "^9.39.2",
"eslint-plugin-import": "^2.31.0", "eslint-config-next": "16.0.10",
"postcss": "^8.4.49", "eslint-plugin-import": "^2.32.0",
"tailwindcss": "^3.4.16", "postcss": "^8.5.6",
"typescript": "^5.7.2" "tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
} }
} }

4671
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: { plugins: {
tailwindcss: {}, '@tailwindcss/postcss': {},
autoprefixer: {}, autoprefixer: {},
}, },
} }

View file

@ -1,7 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@ -11,7 +15,7 @@
"moduleResolution": "bundler", "moduleResolution": "bundler",
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "react-jsx",
"incremental": true, "incremental": true,
"plugins": [ "plugins": [
{ {
@ -20,9 +24,19 @@
], ],
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": [
"./src/*"
]
} }
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": [
"exclude": ["node_modules"] "next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
} }