-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: migrate to TypeScript with full type definitions 🏷️ #39
Open
manavm1990
wants to merge
18
commits into
romboHQ:main
Choose a base branch
from
manavm1990:refactor/ts
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
…e/exclude settings
Add type declarations for flattenColorPalette utility with proper typing for nested color objects. This improves type safety when working with Tailwind's color palette system by replacing `any` with specific color value types.
- Add proper types to all src files - Fix CSS value type issues (convert numbers to strings) - Add type-safety for spring multipliers and utility options - Add .js extensions for ESM compatibility
- Add TypeScript declarations and build output configuration - Configure dual ESM/CJS package exports - Add 'dist/' directory to published files - Update package entry points for TypeScript support - Add build scripts for type checking and compilation The package can now be used in both TypeScript and JavaScript projects with proper type definitions. Build artifacts are generated in the dist/ directory while maintaining source files in src/.
feat: 🏷️ add strong typing to theme functions in baseAnimations.ts feat: 🏷️
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.
TypeScript Migration
This PR migrates the package to TypeScript and modernizes the build system while maintaining full compatibility with both TypeScript and JavaScript projects.
Changes
Testing
No breaking changes - existing consumers of the package should work without modification.
Deliverables