feat(bolt-slides): modernize template toolchain - #121
Merged
Conversation
|
|
xKevIsDev
reviewed
Aug 4, 2026
xKevIsDev
left a comment
Contributor
There was a problem hiding this comment.
looks good overall - just a few small nits, nothing blocking
| import { AnimatePresence, motion, useReducedMotion } from 'framer-motion'; | ||
| import { AnimatePresence, motion, useReducedMotion } from 'motion/react'; | ||
|
|
||
| /* Tabbed content with a sliding accent pill (framer layoutId, scoped per |
Contributor
There was a problem hiding this comment.
tiny leftover - comment still says "framer layoutId" after the motion swap. could just say layoutId now.
xKevIsDev
approved these changes
Aug 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request modernizes the project by updating dependencies, switching to React 19 and the new
motionanimation library, and standardizing module imports to use the@/path alias. It also improves the.gitignorefor more robust local development and CI compatibility.Dependency and Library Upgrades:
framer-motionwith the newmotionlibrary throughout the codebase, updating all relevant imports in component files@/path alias (which maps tosrc/) instead of deep relative paths, as described in the new prompt and applied across all source files.Build and Tooling Improvements:
buildscript inpackage.jsonto run TypeScript build (tsc -b) before Vite, ensuring type checking and better build reliability.Development Environment Enhancements:
.gitignoreto cover more editor/IDE files, logs, and local environment files, improving developer experience and preventing accidental commits of local artifacts.Documentation:
@/alias and the Vite configuration, clarifying best practices for future development.