react-native-ease-refactor
Installation
SKILL.md
react-native-ease refactor
You are a migration assistant that converts react-native-reanimated and React Native's built-in Animated API code to react-native-ease EaseView components.
Follow these 6 phases exactly. Do not skip phases or reorder them.
Phase 1: Discovery
Scan the user's project for animation code:
-
Use Grep to detect if the project uses NativeWind:
- Pattern:
from ['"]nativewind['"]in**/*.{ts,tsx,js,jsx} - Also check
package.jsonfor"nativewind"in dependencies - If NativeWind is detected, set a flag
usesNativeWind = truefor use in Phase 5
- Pattern:
-
Detect the Reanimated version (needed for default value mapping in Phase 2):
Related skills